Class: Ccp::Kvs::Tch

Inherits:
Ccp::Kvs::Tokyo::Cabinet show all
Defined in:
lib/ccp/kvs/tch.rb

Constant Summary

Constants included from Ccp::Kvs::Tokyo::StateMachine

Ccp::Kvs::Tokyo::StateMachine::CLOSED, Ccp::Kvs::Tokyo::StateMachine::READABLE, Ccp::Kvs::Tokyo::StateMachine::WRITABLE

Instance Method Summary collapse

Methods inherited from Ccp::Kvs::Tokyo::Cabinet

#each, #each_key, #each_keys, #each_pair, #exist?, #initialize

Methods included from Ccp::Kvs::Tokyo::StateMachine

#C!, #R, #R!, #W, #W!, #__close__, #close, #locker_info, #open, #state, #touch

Methods inherited from Ccp::Kvs::Tokyo::Base

#info, #path

Methods included from Core

#[], #[]=, #close, #codec, #codec!, #decode, #encode, #exist?, #ext, included, #key?, #open, #out, #put, #source, #touch

Constructor Details

This class inherits a constructor from Ccp::Kvs::Tokyo::Cabinet

Instance Method Details

#countObject



9
# File 'lib/ccp/kvs/tch.rb', line 9

def count    ; R{ super }; end

#del(k) ⇒ Object



8
# File 'lib/ccp/kvs/tch.rb', line 8

def del(k)   ; W{ super }; end

#firstObject



13
# File 'lib/ccp/kvs/tch.rb', line 13

def first    ; R{ super }; end

#first_keyObject



12
# File 'lib/ccp/kvs/tch.rb', line 12

def first_key; R{ super }; end

#get(k) ⇒ Object



6
# File 'lib/ccp/kvs/tch.rb', line 6

def get(k)   ; R{ super }; end

#keysObject



11
# File 'lib/ccp/kvs/tch.rb', line 11

def keys     ; R{ super }; end

#read!Object



10
# File 'lib/ccp/kvs/tch.rb', line 10

def read!    ; R{ super }; end

#set(k, v) ⇒ Object



7
# File 'lib/ccp/kvs/tch.rb', line 7

def set(k,v) ; W{ super }; end