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 /
adapters /
[ HOME SHELL ]
Name
Size
Permission
Action
memcached
[ DIR ]
drwxr-xr-x
mongo
[ DIR ]
drwxr-xr-x
activerecord.rb
4.47
KB
-rw-r--r--
cassandra.rb
3.37
KB
-rw-r--r--
client.rb
2.05
KB
-rw-r--r--
cookie.rb
967
B
-rw-r--r--
couch.rb
3.85
KB
-rw-r--r--
datamapper.rb
2.34
KB
-rw-r--r--
daybreak.rb
1.17
KB
-rw-r--r--
dbm.rb
615
B
-rw-r--r--
file.rb
3.18
KB
-rw-r--r--
fog.rb
1.54
KB
-rw-r--r--
gdbm.rb
606
B
-rw-r--r--
hbase.rb
3.06
KB
-rw-r--r--
leveldb.rb
929
B
-rw-r--r--
lmdb.rb
2.17
KB
-rw-r--r--
localmemcache.rb
766
B
-rw-r--r--
lruhash.rb
2.69
KB
-rw-r--r--
memcached.rb
385
B
-rw-r--r--
memory.rb
450
B
-rw-r--r--
mongo.rb
225
B
-rw-r--r--
null.rb
668
B
-rw-r--r--
pstore.rb
1.97
KB
-rw-r--r--
redis.rb
2.35
KB
-rw-r--r--
restclient.rb
1.31
KB
-rw-r--r--
riak.rb
1.69
KB
-rw-r--r--
sdbm.rb
606
B
-rw-r--r--
sequel.rb
3.74
KB
-rw-r--r--
sqlite.rb
2.68
KB
-rw-r--r--
tdb.rb
609
B
-rw-r--r--
tokyocabinet.rb
1.38
KB
-rw-r--r--
tokyotyrant.rb
3.24
KB
-rw-r--r--
yaml.rb
238
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cassandra.rb
require 'cassandra' module Moneta module Adapters # Cassandra backend # @api public # @author Potapov Sergey (aka Blake) class Cassandra include Defaults include ExpiresSupport attr_reader :backend # @param [Hash] options # @option options [String] :keyspace ('moneta') Cassandra keyspace # @option options [String] :column_family ('moneta') Cassandra column family # @option options [String] :host ('127.0.0.1') Server host name # @option options [Integer] :port (9160) Server port # @option options [Integer] :expires Default expiration time # @option options [::Cassandra] :backend Use existing backend instance # @option options Other options passed to `Cassandra#new` def initialize(options = {}) self.default_expires = options.delete(:expires) @cf = (options.delete(:column_family) || 'moneta').to_sym if options[:backend] @backend = options[:backend] else keyspace = options.delete(:keyspace) || 'moneta' options[:retries] ||= 3 options[:connect_timeout] ||= 10 options[:timeout] ||= 10 @backend = ::Cassandra.new('system', "#{options[:host] || '127.0.0.1'}:#{options[:port] || 9160}", options) unless @backend.keyspaces.include?(keyspace) cf_def = ::Cassandra::ColumnFamily.new(keyspace: keyspace, name: @cf.to_s) ks_def = ::Cassandra::Keyspace.new(name: keyspace, strategy_class: 'SimpleStrategy', strategy_options: { 'replication_factor' => '1' }, replication_factor: 1, cf_defs: [cf_def]) # Wait for keyspace to be created (issue #24) 10.times do begin @backend.add_keyspace(ks_def) rescue Exception => ex warn "Moneta::Adapters::Cassandra - #{ex.message}" end break if @backend.keyspaces.include?(keyspace) sleep 0.1 end end @backend.keyspace = keyspace end end # (see Proxy#key?) def key?(key, options = {}) if @backend.exists?(@cf, key) load(key, options) if options.include?(:expires) true else false end end # (see Proxy#load) def load(key, options = {}) if value = @backend.get(@cf, key) expires = expires_value(options, nil) @backend.insert(@cf, key, {'value' => value['value'] }, ttl: expires || nil) if expires != nil value['value'] end end # (see Proxy#store) def store(key, value, options = {}) @backend.insert(@cf, key, {'value' => value}, ttl: expires_value(options) || nil) value end # (see Proxy#delete) def delete(key, options = {}) if value = load(key, options) @backend.remove(@cf, key) value end end # (see Proxy#clear) def clear(options = {}) @backend.clear_column_family!(@cf) self end # (see Proxy#close) def close @backend.disconnect! nil end end end end
Close