module

Mongo::Commands::CloneCollectionAsCapped

The cloneCollectionAsCapped command creates a new capped collection from an existing, non-capped collection within the same database. The operation does not affect the original non-capped collection.

NOTE: for more details, please check the official MongoDB documentation.

Class methods

name

Instance methods

command(database : String, collection : Collection::CollectionKey, to_collection : Collection::CollectionKey, size : Int64, options = nil)

Returns a pair of OP_MSG body and sequences associated with the command and arguments.

Source