单例不能被甩 - cached_resource gem
Singleton can't be dumped - cached_resource gem
使用 cached_resource gem 缓存活动资源。
用户模型
class User < ActiveResource::Base
cached_resource
class teachers < SimpleDelegator
attr_accessor :teacher_id
def initialize(attributes = {}, _persisted = true)
@teacher_id = attributes['teacher_id']
super(User.find(@teacher_id))
end
end
end
我正在尝试缓存用户资源。
/users/:user_id
每当我调用 /users/:user_id 端点时,它都会给我错误 singleton can't be dumped at line super(User.find(@teacher_id))
如果有任何其他 gem 可以帮助我缓存 activeresource 调用,请提出建议。
Gem activeresource-response
导致了这个问题。它使我的 class 单身。因此,它正在经历单例转储错误。
使用 cached_resource gem 缓存活动资源。
用户模型
class User < ActiveResource::Base
cached_resource
class teachers < SimpleDelegator
attr_accessor :teacher_id
def initialize(attributes = {}, _persisted = true)
@teacher_id = attributes['teacher_id']
super(User.find(@teacher_id))
end
end
end
我正在尝试缓存用户资源。
/users/:user_id
每当我调用 /users/:user_id 端点时,它都会给我错误 singleton can't be dumped at line super(User.find(@teacher_id))
如果有任何其他 gem 可以帮助我缓存 activeresource 调用,请提出建议。
Gem activeresource-response
导致了这个问题。它使我的 class 单身。因此,它正在经历单例转储错误。