# File lib/merb-cache/cache-store/database-sequel.rb, line 22
    def self.cache_get(key)
      if entry = self.filter(:ckey => key).single_record(:limit => 1)
        return entry.data if entry.expire.nil? || Time.now < entry.expire
        self.expire(key)
      end
      nil
    end