Apache::Session::Memorycached is born
Perrin Harkins
perrin@elem.com
Mon, 02 Aug 2004 16:14:44 -0400
On Wed, 2004-07-28 at 10:17, eric GERMAN wrote:
> hi , I 'm playing with the geat job memcached and I 'm adapted it for
> Apache::Session
That's not really safe. Memcached is explicitly an unreliable data
store. It doesn't make any effort to keep your data if the process dies
or runs out of memory. You should keep your session data in something
reliable, and maybe use memcached for a write-through cache if you have
a lot more reads than writes.
- Perrin