Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对日志使用了一些 mongoDb 集合,所以我想使用 MongoDb 上限集合。
我可以使用 paclon Collection 来执行此操作,还是应该在我的日志模型中编写日志轮换代码?
我不认为 Phalcon 支持创建上限集合,但是,您可以在 MongoDB shell 中创建此集合,然后在 Phalcon 中使用它:
db.createCollection("log", { capped : true, size : 5242880, max : 5000 } )