Can anyone point me to an open-source project that correctly uses allocators?

This page summarizes the projects mentioned and recommended in the original post on /r/cpp_questions

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
  • RapidJSON

    A fast JSON parser/generator for C++ with both SAX/DOM style API

  • Jinx

    Embeddable scripting language for real-time applications

  • In my Jinx scripting library, I use a stack-based allocator in several places (e.g. Script.h) to reduce the number of dynamic allocations at runtime while using std containers. Additionally, all allocations fall back to a standard allocator which allows the user of the library to use their own custom allocation functions, something fairly common for game development. The allocators themselves can be found in Memory.h and Memory.cpp. I also use this to track allocation counts and memory use.

  • 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

  • DreamBerd is a perfect programming language

    3 projects | /r/ProgrammingLanguages | 3 Jun 2023
  • How do I create a file that will automatically compile and run my c++ program when I double click it?

    1 project | /r/cpp_questions | 14 Jan 2023
  • Is I already know C and OOP, do I basically already know C++?

    1 project | /r/cpp_questions | 3 Aug 2022
  • I'm curious what a gameplay programmer would use a scripting language for

    1 project | /r/gamedev | 24 Jul 2022
  • What are the best free books for learning to write interpreters in C++?

    1 project | /r/cpp_questions | 8 Jul 2022