Cache 901 0.4 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Cache 901 0.4 (Default branch)
# 1  
Old 12-18-2008
Cache 901 0.4 (Default branch)

Cache 901 is an advanced paperless geocaching program, allowing easy maintenance of a large number of caches locally. It is especially designed to work well on netbooks, allowing them to be taken on the trail and provide any assistance that can be gotten from the data you store. This can include advanced searching capabilities, logs, photos, and personal notes for any cache. License: GNU General Public License v2 Changes:
This version maps out cache locations. It provides advanced searching capabilities. It has logging of caches, along with personal notes and photos for each cache. It supports integration with GPSr's. The new Cache Day feature is not found elsewhere. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Linux

File cache /Page cache Linux

Hi All, could any one point out any open source test-suites for "File cache" testing and as well as performance test suites for the same. Currently my system is up with Linux/ext4. Regards Manish (0 Replies)
Discussion started by: hmanish
0 Replies

2. Linux

getting info on Cache Size, Data Cache etc..

Hi all I saw in Microsoft web site www.SysInternals.com a tool called CoreInfo from able to print out on screen the size of the Data and Instruction caches of your processor, the Locigal to Physical Processor mapping, the number of the CPU sockets. etc.. Do you know if in Linux is available a... (2 Replies)
Discussion started by: manustone
2 Replies
Login or Register to Ask a Question
Cache::FileCache(3pm)					User Contributed Perl Documentation				     Cache::FileCache(3pm)

NAME
Cache::FileCache -- implements the Cache interface. DESCRIPTION
The FileCache class implements the Cache interface. This cache stores data in the filesystem so that it can be shared between processes. SYNOPSIS
use Cache::FileCache; my $cache = new Cache::FileCache( { 'namespace' => 'MyNamespace', 'default_expires_in' => 600 } ); See Cache::Cache for the usage synopsis. METHODS
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. OPTIONS
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. PROPERTIES
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 SEE ALSO
Cache::Cache AUTHOR
Original author: DeWitt Clinton <dewitt@unto.net> Last author: $Author: dclinton $ Copyright (C) 2001-2003 DeWitt Clinton perl v5.12.4 2009-03-01 Cache::FileCache(3pm)