GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Cache::FileCache(3) User Contributed Perl Documentation Cache::FileCache(3)

Cache::FileCache -- implements the Cache interface.

The FileCache class implements the Cache interface. This cache stores data in the filesystem so that it can be shared between processes.

  use Cache::FileCache;

  my $cache = new Cache::FileCache( { 'namespace' => 'MyNamespace',
                                      'default_expires_in' => 600 } );

  See Cache::Cache for the usage synopsis.

See Cache::Cache for the API documentation.
Clear( [$cache_root] )
See Cache::Cache, with the optional $cache_root parameter.
Purge( [$cache_root] )
See Cache::Cache, with the optional $cache_root parameter.
Size( [$cache_root] )
See Cache::Cache, with the optional $cache_root parameter.

See Cache::Cache for standard options. Additionally, options are set by passing in a reference to a hash containing any of the following keys:
cache_root
The location in the filesystem that will hold the root of the cache. Defaults to the 'FileCache' under the OS default temp directory ( often '/tmp' on UNIXes ) unless explicitly set.
cache_depth
The number of subdirectories deep to cache object item. This should be large enough that no cache directory has more than a few hundred objects. Defaults to 3 unless explicitly set.
directory_umask
The directories in the cache on the filesystem should be globally writable to allow for multiple users. While this is a potential security concern, the actual cache entries are written with the user's umask, thus reducing the risk of cache poisoning. If you desire it to only be user writable, set the 'directory_umask' option to '077' or similar. Defaults to '000' unless explicitly set.

See Cache::Cache for default properties.
(get|set)_cache_root
See the definition above for the option cache_root
(get|set)_cache_depth
See the definition above for the option cache_depth
(get|set)_directory_umask
See the definition above for the option directory_umask

Cache::Cache

Original author: DeWitt Clinton <dewitt@unto.net>

Last author: $Author: dclinton $

Copyright (C) 2001-2003 DeWitt Clinton

2015-01-22 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.