I am researching possibilities of using memcached as a session storage for a system built on CodeIgniter. Has anybody done this before(that’s probably a stupid question 🙂 and if so what’s your experience folks? Have you used any existing libraries/extensions?
As far as performance improvement what have you seen? Any caveats?
I am researching possibilities of using memcached as a session storage for a system
Share
Having PHP put the sessions into Memcache directly, rather than through framework code is easy – it’s just changing two lines in the PHP.ini:
This uses the slightly older (but still entirely supported) ‘memcache’ extension from PECL.