Am Mittwoch, den 22.11.2006, 20:12 +0000 schrieb Christiaan Lamprecht: > I'm trying to share some WRITABLE memory between apache requests... > This means that I'll need to use APR mutex's and the like but can > anyone suggest where the best place is to store such writable data. > (short of having to write it to a file, I'm looking for something less > costly) Is the module's server/directory config space appropriate to > write to at runtime?
I would recommend a relational database. The problem with files is IMHO not speed, its that you have to do explicit locking. Sincerely, Joachim
