You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if I'm doing this wrong or it's simply not supported but here it is:
Describe the bug
I have a Subscription model that has a morphToMany relation to setting keys (so a many to many polymorphic). The Subscription model is not cacheable and the relation to setting keys looks like this. The Setting model (the pivot) is also not cacheable.
public function settingKeys(): MorphToMany
{
return $this
->morphToMany(SettingKey::class, 'settingable', 'settings')
->using(Setting::class)
->withPivot('value')
->withTimestamps();
}
The SettingKey model on the other hand uses Cachable.
Eloquent Query
This test will fail with Failed asserting that 1 matches expected 0. at the last line:
I'm using the array driver for testing. (We do have the file driver in production although it's not officially supported anymore.. I hope to be switching it over to redis soon as we'll need to cache some more things).
Stack Trace
....
Environment
PHP: 7.4
OS: Windows 10
Laravel: 7.28.3
Model Caching: 0.10.2
The text was updated successfully, but these errors were encountered:
Same issue with HasManyThrough.
Seems like intermediate model is not supported.
class User extends Model {
public function comments(): HasManyThrough
{
return $this->hasManyThrough(
Comment::class,
UsersComment::class,
'user_id',
'id',
'id',
'comment_id',
);
}
}
Comment is cached. User and UsersComment - not cached.
Adding new sources to the intermediate table users_comment doesn't invalidate cache for comment
The following will fail at any time, unless I clear the cache manually:
First off, thank you for the package!
I'm not sure if I'm doing this wrong or it's simply not supported but here it is:
Describe the bug
I have a Subscription model that has a
morphToMany
relation to setting keys (so a many to many polymorphic). The Subscription model is not cacheable and the relation to setting keys looks like this. TheSetting
model (the pivot) is also not cacheable.The
SettingKey
model on the other hand usesCachable
.Eloquent Query
This test will fail with
Failed asserting that 1 matches expected 0.
at the last line:This test with
disableCache
will pass:I'm using the
array
driver for testing. (We do have thefile
driver in production although it's not officially supported anymore.. I hope to be switching it over to redis soon as we'll need to cache some more things).Stack Trace
....
Environment
The text was updated successfully, but these errors were encountered: