# File lib/moneta/sdbm.rb, line 27
    def initialize(options = {})
      raise "No :file option specified" unless file = options[:file]
      @expiration = BasicSDBM.new("#{file}_expires")
      super(file)
    end