Kohana 3 中的 MongoDB
我编写了一个 Mongo_Model 在 kohana 内部使用,并且对它感觉非常敏捷,直到我尝试使用它进行任何操作。问题是 Kohana 的 Model 类为我做了很多我不希望它做的事情,例如创建默认数据库(从而使我的应用程序崩溃)。那么我该如何在 Kohana 中真正实现我的 mongo 模型呢?如何禁用默认数据库并仅使用我的模型来处理 mongo 的所有内容?或者反过来,我如何更改 kohana 的代码以使用 mongo 确认我?我只是不想把手指伸到不该放的地方(例如 Kohana 的系统文件夹),并且我希望它尽可能干净。有什么建议吗?
谢谢你!
I wrote a Mongo_Model to use inside kohana and felt pretty snappy about it until I tried getting anything working with it. The problem is the Kohana's Model class does many things for me that I don't want it to, such as creating a default database (and thus crashes my app). So how do I go about truly implementing my mongo model in Kohana? How do I disable the default database and Just use my model to handle everything with mongo? or the other way around, how do I change kohana's code to acknowledge me using mongo? I just don't want to stick my fingers where they don't belong (e.g. Kohana's system folder) and I want this to be as clean as possible. Any suggestions?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不必从 Mongo_Model 类扩展 Model 类。如果您希望使用 Kohana 的数据库,则可以使用基本模型类。
Kohana 有一个实现 MongoDB 的项目: https://github.com/colinmollenhour/mongodb-php -odm
You don't have to extend the Model class from your Mongo_Model class. The base model class is there in case you wish to use Kohana's database library.
There is a project for Kohana that implements MongoDB: https://github.com/colinmollenhour/mongodb-php-odm