PostgreSQL支持最丰富的数据类型,更是最具有Nosql的特性。本节的内容会基于官方的active_record_postgresql,进行扩展和完善。

1. 二进制类型

PostgreSQL可以直接存储二进制的文件。例如图片、文档,视频等。

  1. rails g model document payload:binary
  2. # db/migrate/20140207133952_create_documents.rb
  3. class CreateDocuments < ActiveRecord::Migration
  4. def change
  5. create_table :documents do |t|
  6. t.binary :payload
  7. t.timestamps null: false
  8. end
  9. end
  10. end
  11. # Usage
  12. data = File.read(Rails.root + "tmp/output.pdf")
  13. Document.create payload: data

2. 数组

其他数据库系统也是可以存数组的,不过还是最终以字符串的形式存的,取出和读取都是用程序来序列化。假如不用字符串存,那就得多准备一张表,例如,一篇文章要记录什么人收藏过。就得多一张表,每次判断用户是否收藏过,就得查那张表,而数据以冗余的方式存在数据中,就是把user_id存进去一个字段,这样就大大方便了。PostgreSQL默认就支持数据的存取,还支持对数据的各种操作,比如查找等。

  1. # db/migrate/20140207133952_create_books.rb
  2. create_table :books do |t|
  3. t.string 'title'
  4. t.string 'tags', array: true
  5. t.integer 'ratings', array: true
  6. end
  7. add_index :books, :tags, using: 'gin'
  8. add_index :books, :ratings, using: 'gin'
  9. # app/models/book.rb
  10. class Book < ActiveRecord::Base
  11. end
  12. # Usage
  13. Book.create title: "Brave New World",
  14. tags: ["fantasy", "fiction"],
  15. ratings: [4, 5]
  16. ## Books for a single tag
  17. Book.where("'fantasy' = ANY (tags)")
  18. ## Books for multiple tags
  19. Book.where("tags @> ARRAY[?]::varchar[]", ["fantasy", "fiction"])
  20. ## Books with 3 or more ratings
  21. Book.where("array_length(ratings, 1) >= 3")

PostgreSQL还支持对array的各种操作,官方文档给了详细的解释。

  1. # 返回数组第一个元素和第二个元素不相同的记录
  2. Book.where("ratings[0] <> ratings[1]")
  3. # 查找第一个tag
  4. Book.select("title, tags[0] as tag")
  5. # 返回数组的维数
  6. Book.select("title, array_dims(tags)")

像类似array_dims的操作符,官方这篇文章functions-array有详细的记录。

比如,把数组进行类似join的操作。

  1. Book.select("title, array_to_string(tags, '_')")
  2. SELECT title, array_to_string(tags, '_') FROM "books";
  3. title | array_to_string
  4. -----------------+-----------------
  5. Brave New World | fantasy_fiction
  6. (1 row)

3. Hstore

Hstore是PostgreSQL的一个扩展,它能够存放键值对,比如,json,hash等半结构化数据。一般的数据库系统是没有这种功能,而这种需求是很常见的,所以说,PostgreSQL是最具Nosql特性的。只要前端通过js提交一些hash或json,或者通过form提交一些数据,就能直接以json等形式存到数据库中。例如,一个用户有1个,0个,或多个联系人,如果以关系型数据库来存的话,只能多建立一张表来存,然后用has_many,belongs_to来处理。而Hstore就是以字段的形式来存,这就很方便了。

  1. # 开启扩展
  2. rails365_dev=# CREATE EXTENSION hstore;
  3. # 或者
  4. class AddHstore < ActiveRecord::Migration
  5. def up
  6. execute 'CREATE EXTENSION IF NOT EXISTS hstore'
  7. end
  8. def down
  9. execute 'DROP EXTENSION hstore'
  10. end
  11. end
  12. # 或者
  13. class AddHstore < ActiveRecord::Migration
  14. def change
  15. enable_extension 'hstore'
  16. end
  17. end
  18. rails g model profile settings:hstore
  19. # Usage
  20. Profile.create(settings: { "color" => "blue", "resolution" => "800x600" })
  21. profile = Profile.first
  22. profile.settings # => {"color"=>"blue", "resolution"=>"800x600"}
  23. profile.settings = {"color" => "yellow", "resolution" => "1280x1024"}
  24. profile.save!

像array一样,Hstore也是支持很多操作的,官方文档hstore给了详细的描述。

比如:

  1. rails365_dev=# SELECT "profiles".settings -> 'color' FROM "profiles"
  2. ;
  3. ?column?
  4. ----------
  5. yellow
  6. blue
  7. (2 rows)
  8. rails365_dev=# SELECT "profiles".settings ? 'color' FROM "profiles"
  9. ;
  10. ?column?
  11. ----------
  12. t
  13. t
  14. (2 rows)
  15. rails365_dev=# SELECT hstore_to_json("profiles".settings) FROM "profiles"
  16. ;
  17. hstore_to_json
  18. ---------------------------------------------------------------
  19. {"color": "yellow", "resolution": "1280x1024"}
  20. {"color": "blue", "resolution": "[\"800x600\", \"750x670\"]"}
  21. (2 rows)
  22. rails365_dev=# SELECT "profiles".settings -> 'color' FROM "profiles"
  23. where settings->'color' = 'yellow';
  24. ?column?
  25. ----------
  26. yellow
  27. (1 row)

更多详细只要查看官文文档就好了。

关于Hstore有一个gem是activerecord-postgres-hstore,这个gem提供了很多关于Hstore的查询方法。

using-postgres-hstore-rails4这篇文章介绍了Hstore的用法。

其他的特性, “JSON”、”Range Types”、“Enumerated Types”、“UUID”等就不再赘述,要使用时,结合官方文档查看即可。

完结。