Rails Postgres:字符串与文本查询性能

时间:2018-11-22 03:27:19

标签: ruby-on-rails postgresql database-performance

我正在制作一个具有import { renderStylesToString } from 'emotion-server' Product属性的short_description表。 long_description不得超过250个字符。让Rails模型验证字符长度(作为文本数据类型)还是让Postgres验证字符长度(作为字符串数据类型)会更快。

short_description

vs

t.text :long_description # will be max at 1,000 characters
t.string :short_description # will be max at 250 characters

0 个答案:

没有答案