Finder方法返回集合中的最后一项,redis,ohm

时间:2013-12-23 13:29:41

标签: redis ohm

ohm提供了一个返回第一个结果的finder方法,但似乎没有提供类似的.last finder方法,是否有类似于下面的内容返回集合中的最后一个结果?

Book.find(authors: dave.id).first

http://ohm.keyvalue.org/Ohm/Collection.html#first-instance_method

1 个答案:

答案 0 :(得分:1)

简短的回答是,它不是,但是,这是一个解决方案:

Book.find(authors: dave.id).sort_by(:id, :order => "DESC").first