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_keys, #each_pair, #initialize

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

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

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

#info, #path

Methods included from Core

#[], #[]=, #close, #codec, #codec!, #decode, #encode, #ext, included, #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

#get(k) ⇒ Object



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

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

#keysObject



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

def keys     ; R{ super }; end

#read!Object



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

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