Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
lib
/
ruby
/
vendor_ruby
/
moneta
/
adapters
📤 Upload
📝 New File
📁 New Folder
Close
Editing: memory.rb
module Moneta module Adapters # Memory backend using a hash to store the entries # @api public class Memory include Defaults include HashAdapter include IncrementSupport include CreateSupport # @param [Hash] options Options hash # @option options [Hash] :backend Use existing backend instance def initialize(options = {}) @backend = options[:backend] || {} end end end end
Save
Cancel