Sha256: f2aeef0c21f21d056e21a02a20b9ffd39db4b43aa6cd49cc3c1dbd221c2d6e0d
Contents?: true
Size: 1.02 KB
Versions: 2
Compression:
Stored size: 1.02 KB
Contents
module Picky module Backends class File # Base class for all file-based index files. # # Provides necessary helper methods for its # subclasses. # Not directly useable, as it does not provide # dump/load methods. # class Basic attr_reader :cache_path, # This index file's location. :mapping_file # The index file's mapping file (loaded into memory for quick access). # An index cache takes a path, without file extension, # which will be provided by the subclasses. # def initialize cache_path @cache_path = "#{cache_path}.file.#{extension}" # This is the mapping file with the in-memory hash for the # file position/offset mappings. # @mapping_file = Memory::JSON.new "#{cache_path}.file_mapping.#{extension}" end # The default extension for index files is "index". # def extension :index end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
picky-3.1.2 | lib/picky/backends/file/basic.rb |
picky-3.1.1 | lib/picky/backends/file/basic.rb |