Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使っPost.search(keyword, :size => 10)てみましたPost.search(keyword).size(10)。しかし、これらのどれも機能しません。
Post.search(keyword, :size => 10)
Post.search(keyword).size(10)
size拡張クエリDSLでオプションを指定できます。
size
Post.search do query { string keyword } size 10 end
または、:per_pageオプションを設定できます
:per_page
Post.search(keyword, :per_page => 10)