Sha256: 030ccaf12e61059ef3285013f2f4968bff746f6867b7fe6e2c8ced3efa4a25cf
Contents?: true
Size: 1.51 KB
Versions: 7
Compression:
Stored size: 1.51 KB
Contents
module Mongo module GridExt module InstanceMethods # Check the existence of a file matching the given query selector. # # Note that this method can be used with both the Grid and GridFileSystem classes. Also # keep in mind that if you're going to be performing lots of existence checks, you should # keep an instance of Grid or GridFileSystem handy rather than instantiating for each existence # check. Alternatively, simply keep a reference to the proper files collection and query that # as needed. That's exactly how this methods works. # # @param [Hash] selector a query selector. # # @example # # # Check for the existence of a given filename # @grid = Mongo::GridFileSystem.new(@db) # @grid.exist?(:filename => 'foo.txt') # # # Check for existence filename and content type # @grid = Mongo::GridFileSystem.new(@db) # @grid.exist?(:filename => 'foo.txt', :content_type => 'image/jpg') # # # Check for existence by _id # @grid = Mongo::Grid.new(@db) # @grid.exist?(:_id => BSON::ObjectId.from_string('4bddcd24beffd95a7db9b8c8')) # # # Check for existence by an arbitrary attribute. # @grid = Mongo::Grid.new(@db) # @grid.exist?(:tags => {'$in' => ['nature', 'zen', 'photography']}) # # @return [nil, Hash] either nil for the file's metadata as a hash. def exist?(selector) @files.find_one(selector) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems