memcache init doesn't use transaction

This commit is contained in:
tim
2025-04-23 14:13:58 -04:00
parent ef44973646
commit 71942d5b8f

View File

@@ -41,7 +41,7 @@ class RedisState (SeriesCollection):
for k, v in state.iteritems(fork, series):
diffs.append(DiffItem(series, k, v))
# todo tim fix pubs
await self.save(fork, diffs, use_transaction=True, skip_pubs=True) # use_transaction=False if the data is too big
await self.save(fork, diffs, use_transaction=False, skip_pubs=True) # use_transaction=False if the data is too big
# noinspection PyAsyncCall