I tried using Post.search(keyword, :size => 10) and Post.search(keyword).size(10) . but will not work.
Post.search(keyword, :size => 10)
Post.search(keyword).size(10)
You can specify the size option with an extended DSL request:
size
Post.search do query { string keyword } size 10 end
Or you can set the option :per_page
:per_page
Post.search(keyword, :per_page => 10)