mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
move LIMIT/DTHREADS into function _get_items to allow for on the fly changes without a restart or reboot
This commit is contained in:
parent
6ca09d542c
commit
5ce1b7d3e6
1 changed files with 6 additions and 5 deletions
|
@ -20,8 +20,6 @@ from helper import LazyLogger
|
||||||
#################################################################################################
|
#################################################################################################
|
||||||
|
|
||||||
LOG = LazyLogger(__name__)
|
LOG = LazyLogger(__name__)
|
||||||
LIMIT = min(int(settings('limitIndex') or 50), 50)
|
|
||||||
DTHREADS = int(settings('limitThreads') or 3)
|
|
||||||
|
|
||||||
#################################################################################################
|
#################################################################################################
|
||||||
|
|
||||||
|
@ -246,6 +244,9 @@ def _get_items(query, server_id=None):
|
||||||
'RestorePoint': {}
|
'RestorePoint': {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
limit = min(int(settings('limitIndex') or 50), 50)
|
||||||
|
dthreads = int(settings('limitThreads') or 3)
|
||||||
|
|
||||||
url = query['url']
|
url = query['url']
|
||||||
query.setdefault('params', {})
|
query.setdefault('params', {})
|
||||||
params = query['params']
|
params = query['params']
|
||||||
|
@ -270,16 +271,16 @@ def _get_items(query, server_id=None):
|
||||||
return params_copy
|
return params_copy
|
||||||
|
|
||||||
query_params = [
|
query_params = [
|
||||||
get_query_params(params, offset, LIMIT)
|
get_query_params(params, offset, limit)
|
||||||
for offset
|
for offset
|
||||||
in range(params['StartIndex'], items['TotalRecordCount'], LIMIT)
|
in range(params['StartIndex'], items['TotalRecordCount'], limit)
|
||||||
]
|
]
|
||||||
|
|
||||||
# multiprocessing.dummy.Pool completes all requests in multiple threads but has to
|
# multiprocessing.dummy.Pool completes all requests in multiple threads but has to
|
||||||
# complete all tasks before allowing any results to be processed. ThreadPoolExecutor
|
# complete all tasks before allowing any results to be processed. ThreadPoolExecutor
|
||||||
# allows for completed tasks to be processed while other tasks are completed on other
|
# allows for completed tasks to be processed while other tasks are completed on other
|
||||||
# threads. Dont be a dummy.Pool, be a ThreadPoolExecutor
|
# threads. Dont be a dummy.Pool, be a ThreadPoolExecutor
|
||||||
p = concurrent.futures.ThreadPoolExecutor(DTHREADS)
|
p = concurrent.futures.ThreadPoolExecutor(dthreads)
|
||||||
|
|
||||||
results = p.map(lambda params: _get(url, params, server_id=server_id), query_params)
|
results = p.map(lambda params: _get(url, params, server_id=server_id), query_params)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue