[Koha-devel] [Koha-patches] [PATCH] Removed RSS Option from UI

Joe Atzberger ohiocore at gmail.com
Thu Feb 5 00:53:45 CET 2009


On Wed, Feb 4, 2009 at 5:50 PM, Rick Welykochy <rick at praxis.com.au> wrote:

> Of course, a cache is pretty useless unless perl itself is cached using
> mod_perl or similar.


Although I agree the ORM layer really accelerates how quickly you can get
benefit out of memcached, it is certainly incorrect that mod_perl is
required to get any benefit.  The initial testing has already shown modest
benefit.

As another example, you have a fully parsed MARC::Record object
representation for a given biblio.  You can store that object away, and the
next time you need to reference it (when a user clicks for the details page,
or the MARC page, etc.) you can retrieve and use it without having to call:

   - biblioitems for the marcxml
   - MARC::Record->new_from_xml

That example may not be something we do in practice (better targets abound),
but you can see conceptually where the benefit can kick in w/o mod_perl.  In
particular, if you have a lot of Apache front-ends, you can use a
consolidated cache server and get the benefit across all (one copy of the
object available to all of them).

At the end of the day, I think we are very close to seeing real
production-scenario benefit from memcached, and still somewhat far from
using mod_perl.  In large part that is because mod_perl requires broad
changes to the codebase before the first benefit is returned whereas
memcached can slip in optionally now.

--Joe
-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/koha-devel/attachments/20090204/95f0d885/attachment-0003.htm>


More information about the Koha-devel mailing list