As stated at mongodb website, i can expire records with .ensureIndex({state:1},{expireAfterSeconds: 10}). But how this could be implemented from rails? Thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Provided you are using MongoDB 2.2, the Ruby driver should already support this via the Collection's create_index() and ensure_index() methods. Index options are passed directly to the server. The underscored symbols in the API docs are translated internally as a convenience (e.g.
For mongoid specifically, it looks like you can pass custom options for indexes as well, per this documentation. |
|||||||
|
But how this could be implemented from rails?? – Sammaye Aug 8 '12 at 8:14