-;;; riece-cache.el --- LRU based cache management
+;;; riece-cache.el --- LRU cache
;; Copyright (C) 1998-2005 Daiki Ueno
;; Author: Daiki Ueno <ueno@unixuser.org>
(defvar riece-coding-system nil
"Coding system for process I/O.
Local to the server buffers.")
-(defvar riece-user-lru nil
- "LRU cache of usernames.
+(defvar riece-user-cache nil
+ "Cache of usernames.
Local to the server buffers.")
;;; Variables local to the channel buffers:
:type 'function
:group 'riece-server)
-(defcustom riece-user-lru-max-size 512
- "Maximum size of LRU cache of usernames."
+(defcustom riece-user-cache-max-size 512
+ "Maximum size of cache of usernames."
:type 'integer
:group 'riece-server)