mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

abobrov
08.22.2007 9c826e53ce4440b3626396db2662b2c595cd3038
- fix some comments typos and inaccuracies.
3 files modified
26 ■■■■ changed files
opends/src/server/org/opends/server/api/EntryCache.java 6 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/extensions/DefaultEntryCache.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/extensions/FileSystemEntryCache.java 18 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/api/EntryCache.java
@@ -582,7 +582,7 @@
  /**
   * Retrieves the curent number of entries stored within the cache.
   * Retrieves the current number of entries stored within the cache.
   *
   * @return  The current number of entries stored within the cache.
   */
@@ -591,7 +591,7 @@
  /**
   * Retrieves the curent number of cache hits for this cache.
   * Retrieves the current number of cache hits for this cache.
   *
   * @return  The current number of cache hits for this cache.
   */
@@ -603,7 +603,7 @@
  /**
   * Retrieves the curent number of cache misses for this cache.
   * Retrieves the current number of cache misses for this cache.
   *
   * @return  The current number of cache misses for this cache.
   */
opends/src/server/org/opends/server/extensions/DefaultEntryCache.java
@@ -56,7 +56,7 @@
/**
 * This class defines the default entry cache which acts as an arbiter for
 * every entry cache implemenation configured and installed withhin the
 * every entry cache implementation configured and installed within the
 * Directory Server or acts an an empty cache if no implementation specific
 * entry cache is configured.  It does not actually store any entries, so
 * all calls to the entry cache public API are routed to underlying entry
opends/src/server/org/opends/server/extensions/FileSystemEntryCache.java
@@ -96,15 +96,15 @@
 * any file system will do for this cache to function. Entries are maintained
 * either by FIFO (default) or LRU (configurable) based list implementation.
 * <BR><BR>
 * Cache sizing is based on the size or percentage of free space availble in
 * the file system, such that if enough memory is free, then adding an entry
 * to the cache will not require purging, but if more than a specified
 * percentage of the file system available space is already consumed, then
 * one or more entries will need to be removed in order to make room for a
 * new entry.  It is also possible to configure a maximum number of entries
 * for the cache. If this is specified, then the number of entries will not
 * be allowed to exceed this value, but it may not be possible to hold this
 * many entries if the available memory fills up first.
 * Cache sizing is based on the size of free space available in the file
 * system, such that if enough memory is free, then adding an entry to the
 * cache will not require purging, but if more than a specified size of the
 * file system available space is already consumed, then one or more entries
 * will need to be removed in order to make room for a new entry. It is also
 * possible to configure a maximum number of entries for the cache. If this
 * is specified, then the number of entries will not be allowed to exceed
 * this value, but it may not be possible to hold this many entries if the
 * available memory fills up first.
 * <BR><BR>
 * Other configurable parameters for this cache include the maximum length of
 * time to block while waiting to acquire a lock, and a set of filters that may