The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Name

Object::Relation::Cache::Memcached - Object::Relation caching

Synopsis

  use Object::Relation::Cache::Memcached;

  my $cache = Object::Relation::Cache::Memcached->new;
  $cache->set($id, $object);
  $cache->add($id, $object);
  $object = $cache->get($id);

Description

This class provides an interface for caching data in Object::Relation, regardless of the underlying caching mechanism chosen.

Overridden methods

  • new

  • set

  • add

  • get

  • remove

Copyright and License

Copyright (c) 2004-2006 Kineticode, Inc. <info@obj_relode.com>

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.