MooseX-Attribute-Cached This is an extension for your Moose based classes to make your attributes set and get their values from a cache system, rather than from the default perl memory perl instance storage. That way: 1) All instances share the same attribute slot. Updates made by one attribute are seen by all instances, even on different servers as long as they share a distributed caching system (such as Memcached). 2) It can be a sort of 'persistance lite' although I highly recommend using a real persistance system, such as a database or MooseX::Storage. 3) You could probably use this as a sort of expensive class attribute, but you will likely be more happy with MooseX::ClassAttribute INSTALLATION To install this module, run the following commands: perl Makefile.PL make make test make install SUPPORT AND DOCUMENTATION After installing, you can find documentation for this module with the perldoc command. perldoc MooseX::Attribute::Cached You can also look for information at: RT, CPAN's request tracker http://rt.cpan.org/NoAuth/Bugs.html?Dist=MooseX-Attribute-Cached AnnoCPAN, Annotated CPAN documentation http://annocpan.org/dist/MooseX-Attribute-Cached CPAN Ratings http://cpanratings.perl.org/d/MooseX-Attribute-Cached Search CPAN http://search.cpan.org/dist/MooseX-Attribute-Cached COPYRIGHT AND LICENCE Copyright (C) 2008 John Napiorkowski This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.