sinatra 1.2.6 的 mongomapper 版本是什么

发布于 2024-12-05 13:53:11 字数 87 浏览 0 评论 0原文

我使用 sinatra 1.2.6 和 mango_mapper 版本 0.9.2,但项目渲染页面速度很慢。如何配置 mongomapper 和 sinatra

I use sinatra 1.2.6 and mango_mapper version 0.9.2 but project is slow for render page.How I config mongomapper and sinatra

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟火散人牵绊 2024-12-12 13:53:11

我不确定你所说的配置 Mongomapper 和 Sinatra 是什么意思。我在配置块中使用了它:

MongoMapper.database = ENV['MONGOLAB_DATABASE']
MongoMapper.connection = Mongo::Connection.new(ENV['MONGOLAB_URL'], 27107)
MongoMapper.database.authenticate(ENV['MONGOLAB_USER'], ENV['MONGOLAB_PASS'])

但这不仅仅适用于 Sinatra,而且几乎到处都需要它。这里的性能也还可以。你可以查看 Github 上的 rstatus 项目,该项目现在使用 Rails,但以前使用 Sinatra。因此,将您的代码与他们的代码进行比较。

I'm not sure what you mean by configuring Mongomapper and Sinatra. I use this in my configure block:

MongoMapper.database = ENV['MONGOLAB_DATABASE']
MongoMapper.connection = Mongo::Connection.new(ENV['MONGOLAB_URL'], 27107)
MongoMapper.database.authenticate(ENV['MONGOLAB_USER'], ENV['MONGOLAB_PASS'])

But then this is not just for Sinatra and is pretty much required everywhere. Performance is also ok here. You could check out the rstatus project on Github which uses now Rails but used to be Sinatra. So compare your code with theirs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文