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::Ref::CLOCK(3pm)					User Contributed Perl Documentation				    Cache::Ref::CLOCK(3pm)

NAME
Cache::Ref::CLOCK - CLOCK cache replacement algorithm SYNOPSIS
my $c = Cache::Ref::CLOCK->new( size => $n, k => $k, ); DESCRIPTION
This algorithm is provides a second chance FIFO cache expiry policy using a circular buffer. It is a very well accepted page replacement algorithm, but largely for reasons which are irrelevant in this context (cache hits don't need to be serialized in a multiprocessing context as they only require an idempotent operation (setting a bit to 1)). ATTRIBUTES
size The size of the live entries. k This is the initial value given to all hit entries. As the hand moves through the circular buffer it decrements the counters. The default is 1, providing semantics similar to a second chance FIFO cache. Larger values of "k" model LRU more accurately. This is pretty silly though, as Cache::Ref::LRU is probably way more efficient for any "k" bigger than 1. AUTHOR
Yuval Kogman COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Yuval Kogman. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.12.4 2010-09-23 Cache::Ref::CLOCK(3pm)