是否可以使用陈旧?有收集?例如,我正在开发一个REST api,允许客户端偶尔查询服务器以询问最新的项目列表.如果陈旧会好的吗?可以根据我的If-Modified ..标题检查集合,如果没有任何变化则发送304.
快速举例:
def index @items = Item.all if stale?(@items) render json: @items end end def show if stale?(@item) render json: @item end end
解决方法
对于Rails< 5:
stale?(last_modified: @items.maximum(:updated_at))
对于Rails> = 5只是:
stale?(@items)