From 22b2e1e7cd7e5d6d6e65be46b3bb883f844e9b65 Mon Sep 17 00:00:00 2001 From: Matias Cascallares Date: Fri, 16 Jan 2015 08:57:47 +0800 Subject: [PATCH] Update capped-collections.txt Removal of 'delete operations' from intro wording since delete operation is not supported in capped collections --- source/core/capped-collections.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/core/capped-collections.txt b/source/core/capped-collections.txt index 513d789bb94..d440ed8f35e 100644 --- a/source/core/capped-collections.txt +++ b/source/core/capped-collections.txt @@ -5,8 +5,8 @@ Capped Collections .. default-domain:: mongodb :term:`Capped collections ` are fixed-size -collections that support high-throughput operations that insert, -retrieve, and delete documents based on insertion order. Capped +collections that support high-throughput operations that insert +and retrieve documents based on insertion order. Capped collections work in a way similar to circular buffers: once a collection fills its allocated space, it makes room for new documents by overwriting the oldest documents in the collection.