Queries Find: where: pluck and scope: Read More
posted @ 2019-04-30 21:20 vixennn Views(237) Comments(0) Diggs(0)
1:1 embedded relationship: M:1 linked relationship(one_direction): child uses belongs_to parent uses has_many 1:M embedded relationship: M:1 embedded Read More
posted @ 2019-04-30 11:04 vixennn Views(124) Comments(0) Diggs(0)
Mongoid: object-document-mapper(ODM) Mongoid Configuration: rails g mongoid:config Document: Documents are the core objects in Mongoid Mongoid::Docume Read More
posted @ 2019-04-29 21:30 vixennn Views(164) Comments(0) Diggs(0)
#explain command pp db[:zips].find(:state => 'MD').explain #List all indexes: db[:zips].indexes.each do |index| p index #drop_one db[:zips].indexes.drop_one('state_1') #unique command d... Read More
posted @ 2019-04-25 12:00 vixennn Views(291) Comments(0) Diggs(0)
GridFS - specification for storing and retrieving large files... images,audio file, video files... File system to store the chunks. Data is stored wit Read More
posted @ 2019-04-25 11:11 vixennn Views(104) Comments(0) Diggs(0)
Normalization: ...... Relationships: One-to-One relationship: 1-to-many: many-to-many: Read More
posted @ 2019-04-24 19:33 vixennn Views(337) Comments(0) Diggs(0)
Aggregation Framework: $project: a document stream by renaming, adding, or removing fields $group: $match: $unwind: Read More
posted @ 2019-04-24 00:57 vixennn Views(116) Comments(0) Diggs(0)
MongoDB:以BSON(Binary JSON)方式存储数据 Mapping: SQL vs. Mongo(Sampe Query): MongoDB基础: MongoDB Ruby Driver Setup: mongo-ruby driver *gem update -system *gem Read More
posted @ 2019-04-20 21:20 vixennn Views(150) Comments(0) Diggs(0)
NoSQL(Not Only SQL)入门: *没有Fixed Schema *没有关系型数据储存在系统中 * 在大数据方面NoSQL有更好的表现 * 支持unstructured data - 不同的NoSQL种类: 1. Key/Value 2.document: 3. Column: 4.Gr Read More
posted @ 2019-04-19 11:28 vixennn Views(138) Comments(0) Diggs(0)
root to: 'xxx' 默认root路径 Nested Resource: content_tag: simple_format: Formats new lines as <br> Authentication: HTTP Sessions and cookies: HTTP is a st Read More
posted @ 2019-04-18 10:28 vixennn Views(107) Comments(0) Diggs(0)