solar.module.cache
Interface CacheConstants

All Known Implementing Classes:
BaseCache, CachedObject

public interface CacheConstants

Constants used by cache service.

Version:
$Id: CacheConstants.java,v 1.1 2003/10/04 01:49:26 glchen Exp $
Author:
Guanling Chen

Field Summary
static int CACHE_CAPACITY_DEFAULT
          Default cache capacity.
static int CACHE_CAPACITY_INFINIT
          Unlimited cache capacity.
static long CACHE_TTL_DEFAULT
          Default object age/ttl (30 minutes).
static long CACHE_TTL_FOREVER
          Do not expire the object
 

Field Detail

CACHE_TTL_FOREVER

public static final long CACHE_TTL_FOREVER
Do not expire the object

See Also:
Constant Field Values

CACHE_TTL_DEFAULT

public static final long CACHE_TTL_DEFAULT
Default object age/ttl (30 minutes).

See Also:
Constant Field Values

CACHE_CAPACITY_INFINIT

public static final int CACHE_CAPACITY_INFINIT
Unlimited cache capacity.

See Also:
Constant Field Values

CACHE_CAPACITY_DEFAULT

public static final int CACHE_CAPACITY_DEFAULT
Default cache capacity.

See Also:
Constant Field Values