Re: shared table (create a pool from a block of memory?)

2007-08-04 Thread Joachim Zobel
Am Freitag, den 03.08.2007, 16:54 -0500 schrieb Ray Morris: More complex data needs to be held in a structure like a table, though. If you need a shared table consider using a relational database. It is much more scaleable, it handles concurreny and it is probably faster than you think.

shared table (create a pool from a block of memory?)

2007-08-03 Thread Ray Morris
We would like to use an APR table to share data between processes or threads where the data is a buit more than one would want to manage in a raw block of shared memory. Searching this list, on Google, and looking through the source I've found several people wanting to do soemthing similar,