Giter Site home page Giter Site logo

Comments (6)

c33s avatar c33s commented on July 17, 2024

quotes from http://www.mongodb.org/display/DOCS/Optimizing+Storage+of+Small+Objects

In general it is not necessary to use short field names.

[...] reduces expressiveness to the programmer and is not recommended unless you have a collection where this is of significant concern.

full quote:

Using Small Field Names
Consider a record
{ last_name : "Smith", best_score: 3.9 }
The strings "last_name" and "best_score" will be stored in each object's BSON. Using shorter strings would save space:
{ lname : "Smith", score : 3.9 }
Would save 9 bytes per document. This of course reduces expressiveness to the programmer and is not recommended unless you have a collection where this is of significant concern.
Field names are not stored in indexes as indexes have a predefined structure. Thus, shortening field names will not help the size of indexes. In general it is not necessary to use short field names.

from uptime.

pgodel avatar pgodel commented on July 17, 2024

I have some large collections with millions of docs and it does make a difference.

from uptime.

fzaninotto avatar fzaninotto commented on July 17, 2024

Uptime cleans up pings older than 3 months (this can be tweaked in the config file). You would need thousands of checks to make the name change significant in size. Are you planning to use Uptime to monitor the whole AWS cloud? 😏

from uptime.

pgodel avatar pgodel commented on July 17, 2024

no, but I was considering using it for a few 1000s checks.

are you using capped collections?

from uptime.

fzaninotto avatar fzaninotto commented on July 17, 2024

No, the cleanup script removes documents based on their timestamp. But using capped collections would be a great alternative. Would you like to send me a PR?

from uptime.

fzaninotto avatar fzaninotto commented on July 17, 2024

No feedback in almost a month, closing.

from uptime.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.