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
As a workaround, please call segment at the very beginning of the method chain:
let cache = Cache::builder().segments(1)// Move up to here..time_to_idle(Duration::from_secs(3)).eviction_listener_with_conf(listener, notification_configuration).name("tracked_sessions").build();
with latest moka
0.9.6
settingsegments
will disable notifications.simple example to reproduce:
Will print nothing, but removing
.segments(1)
will properly print/show four notifications.at it looks, number of segments does not make difference.
The text was updated successfully, but these errors were encountered: