Python’s Multiprocessing Performance Problem

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • pybind11

    Seamless operability between C++11 and Python

  • If you've never used Pybind before these pybind tests[1] and this repo[2] have good examples you can crib to get started (in addition to the docs). Once you handle passing/returning/creating the main data types (list, tuple, dict, set, numpy array) the first time, then it's mostly smooth sailing.

    Pybind offers a lot of functionality, but core "good parts" I've found useful are (a) use a numpy array in Python and pass it to a C++ method to work on, (b) pass your python data structure to pybind and then do work on it in C++ (some copy overhead), and (c) Make a class/struct in C++ and expose it to Python (so no copying overhead and you can create nice cache-aware structs, etc.).

    [1] https://github.com/pybind/pybind11/blob/master/tests/test_py...

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Swig – Connect C/C++ programs with high-level programming languages

    5 projects | news.ycombinator.com | 18 Jul 2023
  • returning numpy arrays via pybind11

    1 project | /r/codehunter | 7 Jul 2023
  • I created smooth_lines python module, great for drawing software

    3 projects | /r/Python | 27 Apr 2023
  • Facial Landmark Detection with C++

    1 project | /r/robotics | 2 Mar 2023
  • Making Python Web Application with C++ Backend

    1 project | /r/PinoyProgrammer | 12 Feb 2023