module Persist::SharderAdapter
Public Class Methods
Source
# File lib/rbbt/persist/tsv/sharder.rb, line 3 def self.open(path, write, type=nil, options = {}, &block) database = CONNECTIONS[path] ||= Sharder.new(path, write, type, options, &block) database.extend Persist::SharderAdapter unless Persist::SharderAdapter === database database end