Sha256: a3a0aecfe3fe8c96fcdf4690b3ca71bcabf015e6069b323e5d453c74978d0c04

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

module Anemone
  module Storage

    def self.Hash(*args)
      hash = Hash.new(*args)
      # add close method for compatibility with Storage::Base
      class << hash; def close; end; end
      hash
    end

    def self.PStore(*args)
      require 'anemone/storage/pstore'
      self::PStore.new(*args)
    end

    def self.TokyoCabinet(file = 'anemone.tch')
      require 'anemone/storage/tokyo_cabinet'
      self::TokyoCabinet.new(file)
    end

    def self.KyotoCabinet(file = 'anemone.tch')
      require 'anemone/storage/kyoto_cabinet'
      self::KyotoCabinet.new(file)
    end

    def self.MongoDB(mongo_db = nil, collection_name = 'pages')
      require 'anemone/storage/mongodb'
      mongo_db ||= Mongo::Connection.new.db('anemone')
      raise "First argument must be an instance of Mongo::DB" unless mongo_db.is_a?(Mongo::DB)
      self::MongoDB.new(mongo_db, collection_name)
    end

    def self.Redis(opts = {})
      require 'anemone/storage/redis'
      self::Redis.new(opts)
    end
    
    def self.SQLite3(file = 'anemone.db')
      require 'anemone/storage/sqlite3'
      self::SQLite3.new(file)
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
anemone-0.7.0 lib/anemone/storage.rb