Cleanup client_ips

This commit is contained in:
Brendan Abolivier 2019-10-08 14:38:14 +01:00
parent 8f1b385acc
commit b1c0a4ceb3
No known key found for this signature in database
GPG key ID: 1E015C145F1916CD

View file

@ -35,15 +35,8 @@ LAST_SEEN_GRANULARITY = 120 * 1000
class ClientIpBackgroundUpdateStore(background_updates.BackgroundUpdateStore):
def __init__(self, db_conn, hs):
self.client_ip_last_seen = Cache(
name="client_ip_last_seen", keylen=4, max_entries=50000 * CACHE_SIZE_FACTOR
)
super(ClientIpBackgroundUpdateStore, self).__init__(db_conn, hs)
self.user_ips_max_age = hs.config.user_ips_max_age
self.register_background_index_update(
"user_ips_device_index",
index_name="user_ips_device_id",