Copyright (C) 2017-2019 MongoDB, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
| VERSION | = | '2.8.0'.freeze |
The current version of the driver.
@since 2.0.0 |
|
| INSERT_ONE_TRANSFORM | = | ->(doc){ doc |
Proc to transform insert one ops.
@since 2.1.0 |
|
| REPLACE_ONE_TRANSFORM | = | ->(doc){ { Operation::Q => doc[:filter], Operation::U => doc[:replacement], Operation::MULTI => false, Operation::UPSERT => doc.fetch(:upsert, false) |
Proc to transfor replace one ops.
@since 2.1.0 |
|
| UPDATE_MANY_TRANSFORM | = | ->(doc){ { Operation::Q => doc[:filter], Operation::U => doc[:update], Operation::MULTI => true, Operation::UPSERT => doc.fetch(:upsert, false) |
Proc to transform update many ops.
@since 2.1.0 |
|
| UPDATE_ONE_TRANSFORM | = | ->(doc){ { Operation::Q => doc[:filter], Operation::U => doc[:update], Operation::MULTI => false, Operation::UPSERT => doc.fetch(:upsert, false) |
Proc to transform update one ops.
@since 2.1.0 |
|
| MAPPERS | = | { DELETE_MANY => DELETE_MANY_TRANSFORM, DELETE_ONE => DELETE_ONE_TRANSFORM, INSERT_ONE => INSERT_ONE_TRANSFORM, REPLACE_ONE => REPLACE_ONE_TRANSFORM, UPDATE_MANY => UPDATE_MANY_TRANSFORM, UPDATE_ONE => UPDATE_ONE_TRANSFORM |
Document mappers from the bulk api input into proper commands.
@since 2.1.0 |