将我的应用程序从 ruby​​/rails 重写为 javascript/express。 mongodb 能满足我的需求吗?

发布于 2024-11-25 08:18:56 字数 819 浏览 1 评论 0原文

我的 Rails 3 数据库 schema.rb 如下所示:

ActiveRecord::Schema.define(:version => 20110504034934) do

  create_table "comments", :force => true do |t|
    t.string   "name"
    t.text     "content"
    t.integer  "post_id"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.string   "ancestry"
  end

  add_index "comments", ["ancestry"], :name => "index_comments_on_ancestry"

  create_table "posts", :force => true do |t|
    t.string   "name"
    t.string   "title"
    t.text     "content"
    t.integer  "topic_id"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "topics", :force => true do |t|
    t.string   "name"
    t.datetime "created_at"
    t.datetime "updated_at"
  end
end

该数据库的唯一添加内容将通过 openid 与用户相关。 mongoDB 可以处理这个吗?

My Rails 3 database schema.rb looks like this:

ActiveRecord::Schema.define(:version => 20110504034934) do

  create_table "comments", :force => true do |t|
    t.string   "name"
    t.text     "content"
    t.integer  "post_id"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.string   "ancestry"
  end

  add_index "comments", ["ancestry"], :name => "index_comments_on_ancestry"

  create_table "posts", :force => true do |t|
    t.string   "name"
    t.string   "title"
    t.text     "content"
    t.integer  "topic_id"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

  create_table "topics", :force => true do |t|
    t.string   "name"
    t.datetime "created_at"
    t.datetime "updated_at"
  end
end

The only additions to this database would be user-related via openid. Can mongoDB handle this?

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

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

发布评论

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

评论(1

甜嗑 2024-12-02 08:18:56

是的,MongoDB 可以处理这种类型的结构。请注意,您可能想要更改数据的结构。您可能需要考虑在帖子中嵌入评论

另请查看主题。如果主题名称是唯一的(可能是),那么您可能需要考虑将其设为 MongoDB 中的 _id

如果您要迁移到 Node / MongoDB,您需要查看 mongoosejs.com。这是 MongoDB 的简单 ORM。它可以帮助您对数据进行建模。

Yes, MongoDB can handle this type of structure. Note that you may want to change the structure of your data. You may want to consider embedding comments inside of posts.

Also take a look at topics. If the topic name is unique (it probably is), then you may want to consider making it the _id in MongoDB.

If you're moving to Node / MongoDB, you'll want to check out mongoosejs.com. It's a simple ORM for MongoDB. It may help you model the data.

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