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
Currently size of serializer cache is not bounded: this is something that goes against the cardinal rule of caches ("never use unbounded caches for unbounded domain").
This needs to go in 3.0 because tweaks to caching are generally high-risk changes.
The text was updated successfully, but these errors were encountered:
One note: default maximum size is 4000, which should be sufficient for most uses.
Value could be made configurable (either explicitly, or by allowing cache instance to be constructed as part of building of mapper) but for now it is most important to add some bound.
(note: offshoot of #1905)
Currently size of serializer cache is not bounded: this is something that goes against the cardinal rule of caches ("never use unbounded caches for unbounded domain").
This needs to go in 3.0 because tweaks to caching are generally high-risk changes.
The text was updated successfully, but these errors were encountered: