Andrew Hubbs
Andrew Hubbs
@philfreo did you ever come to a reasonable solution for this? I have a pretty identical situation.
Thanks Phil. That's more or less what I was afraid of.
This may be a bug in Rails. The error is very similar to [this bug](https://github.com/rails/rails/issues/7375) and changing the objects I am passing into the partials into arrays seems to fix...
So after more digging I think it is a little more complicated. I have narrowed it down to a specific `has_many` relation between a few of my models. The relation...
While their could be a problem in Rails, I am starting to think this is a `RABL` issue with writing cache values that can't be fetched back out. See the...
@jasajona The Rabl docs are pretty explicit about what object gets passed in. Since the symbol you are passing to `child` or `node` is an arbitrary name for the node,...
I've had this happen to. It is basically from setting a cache key that includes a collection of objects. ``` ruby cache ["foo", @some_big_collection] ``` The solution I have usually...
I don't think you should need to because you are generating the key from the other keys. If those keys are automatically invalidated, so too should the hash key. On...
Thanks @benkitzelman for getting back to me. Sorry I have been very slow to respond. I think @ChristopheBelpaire is right. We need to separate the driver gems from the core....