mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Revert limiting of fetching, it didn't help perf.
This commit is contained in:
parent
9ff7f66a2b
commit
6c74fd62a0
@ -505,15 +505,8 @@ class EventsStore(SQLBaseStore):
|
|||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
with self._event_fetch_lock:
|
with self._event_fetch_lock:
|
||||||
tot = 0
|
event_list = self._event_fetch_list
|
||||||
j = 0
|
self._event_fetch_list = []
|
||||||
for j, lst in enumerate(self._event_fetch_list):
|
|
||||||
if tot > 200:
|
|
||||||
break
|
|
||||||
tot += len(lst[0])
|
|
||||||
|
|
||||||
event_list = self._event_fetch_list[:j+1]
|
|
||||||
self._event_fetch_list = self._event_fetch_list[j+1:]
|
|
||||||
|
|
||||||
if not event_list:
|
if not event_list:
|
||||||
if self.database_engine.single_threaded or i > 3:
|
if self.database_engine.single_threaded or i > 3:
|
||||||
|
Loading…
Reference in New Issue
Block a user