Questions tagged [capped-collections]

A fixed size collection of elements sorted by insertion order

A capped collection is a fixed size collection of elements sorted by insertion order. Once the capped size has been reached, the collection behaves like a circular queue, overwriting the oldest elements with any new elements.

47 questions
0
votes
1 answer

Is there a way to use MongoDB capped collections with Django's builtin logging module?

I'm interested in using MongoDB capped collections to log system activity on my Django project, in a similar way to what Django's builtin logging module already does. Is there any way to achieve this?
tilacog
  • 663
  • 7
  • 14
0
votes
0 answers

Capped Collection in mongodb issues

I made an analysis on capped collection, I found that there is no performance improvement in capped collection. I created a collection named test1 with 20,000 data, I did copyTo test2 with same data which is capped true with data size specified.…
Harry
  • 3,072
  • 6
  • 43
  • 100
1 2 3
4