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

How do I start memcached automatically upon log in to my Mac?

2014-01-14 Thread laredotornado
Hi, How do I start memcache automatically upon logging in to my Mac 10.9.1 machine? I’m trying the following that results in an error. I placed the following script (MemCached.plist) in my /Library/LaunchDaemons folder with -rw-r--r-- permissions (user: root, group: wheel): ?xml

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,