我有一个严重依赖于 postgres 中的 hstore 类型的应用程序。我似乎无法克服的问题是使 hstore 在太阳黑子中可搜索。这是我正在处理的一些代码
class Post < ActiveRecord::Base
# properties is type hstore
%w[price condition website].each do |key|
store_accessor :properties, key
end
...
searchable :auto_index => false, :auto_remove => false do
text :title, :boost => 5.0
integer :category
integer :subcategory
# this is whats giving me the problem
string :properties["price"]
end
end
我尝试添加不同的类型,但似乎没有任何效果。这是还不支持的功能吗?