I have a Rails app that uses STI to handle different types of Users, such as:
class Admin < User
...
end
I want to use memcached, but I keep getting the dreaded "unknown class/module" error. I've tried pre-loading all of my ActiveRecord models to no avail. The first request works as normal, but the first pull from memcached errors out. I've followed these instructions to no avail either.
Is using memcached possible with single table inheritance?