Interaction with ORM software

2014-01-14 Thread Ted Byers
I write web code using Perl, running on Apache's web server. I am beginning to use the perl package DBIx::Datamodel, which looks to be a capable ORM package. I know there is a perl package, Cache::Memcached, that provides in interface to memcached. But what isn't clear to me is whether the

Re: Interaction with ORM software

2014-01-14 Thread Perrin Harkins
Hi Ted, DBIx::DataModel doesn't use memcached and isn't really related to it. You can certainly store things in memcached yourself, but your DBIx::DataModel won't know anything about it. You'd have to add a caching layer on top yourself. If having that built into your ORM is important to you,