| Cache v1 |
Share astrientfoundation - Thursday September 3, 2009 14:36 EDT - http://hostj2me.com/a/7vn
http://www.hostj2me.com/d/9353/10211/cache.jar
(browse)
This JAR file contains the caching code used in HostJ2ME.com and CliqCafe. There are several variations of caching and each variation is employed in HostJ2ME.com to increase efficiency.
For example, all file download requests pass through a GdsCache which caches the bytes of files on disk in memory for quick access.
GdsCache cache = ...
GdsCacheObject object = cache.getGdsCacheObject(path);
if (object == null)
{
object = new GdsCacheObject(path);
cache.put(path, object);
}
object.writeTo(os);
Caching is also used extensively when retrieving records from the HostJ2ME.com database.
List<Record> records = (List<Record>)cache.get(key);
if ( records == null )
{
//get from database
cache.put(key,records);
}
|
report this application
|
|
| Total Accounts: 65,344 |
| Total Applications: 6,468 |
| Total Files: 161,296 |
| Total Downloads: 6,156,418 |
| Total Stored: 11.45GB |
|