All Classes
-
All Classes Interface Summary Class Summary Class Description AbstractFileMap<K,V> This abstract class is a utility to easily manipulate lines in a random access file and converting text lines into key/value format and vice-versa.BufferedRandomAccessFile In core Java, you have the choice between: - RandomAccessFile: random access but slow (unbuffered) - BufferedInputStream/Reader: fast (buffered) but no random access Sadly, both are incompatible and there is no meaningful way to combine them.CachedFileMap<K,V> This thread safe hash map is stored both in memory and on disk.FileMap<K,V> Formatter<T> IndexedFileMap<K,V> This thread safe hash map stores its key/values on disk.