Is there library usable from c++ for sharing fairly simple data (integers,floating point numbers, strings) between cooperative processes?
Must be :
- high-speed (SQL-based methods too slow due to parsing)
- able to get,set,update,delete both fixed and variable data types (e.g. int and string)
- ACID (atomic,consistent,isolated,durable)
- usable under linux
- usable by processes without a shared parent.
- highly compatible license: e.g. LGPL,MIT,BSD
For bonus points:
- ability to work across the network.
- ability to handle aggregation/composition into more complicated structures