Re: php database abstraction layer / memcached

2009-07-13 Thread Joseph Engo
Unless you are supporting multiple databases, the extra overhead of ADODB is generally not worth it. Its serializing the value and using an md5 of the query as the cache key name. Unnecessary overhead and it will make deleting cache keys a pain in the ass for a large application. If y

Re: php database abstraction layer / memcached

2009-07-13 Thread Patrick May
Sounds like you are looking for ADODB: http://phplens.com/lens/adodb/docs-adodb.htm#memcache On Jun 24, 3:44 am, Markus wrote: > My apologies if this mail may appear slightly off-topic. > > Is there a php database abstraction layer which uses memcached for caching? > > tnx!

Re: php database abstraction layer / memcached

2009-07-08 Thread mitchenall
On Jun 24, 8:44 am, Markus wrote: > My apologies if this mail may appear slightly off-topic. > > Is there a php database abstraction layer which uses memcached for caching? I experimented with this for a while, then I realised, caching really has no place within the database abstraction layer it

php database abstraction layer / memcached

2009-06-24 Thread Markus
My apologies if this mail may appear slightly off-topic. Is there a php database abstraction layer which uses memcached for caching? tnx!