jellyfin-kodi/jellyfin_kodi
Chuddah 6fe450da4d Attempt number 2 on a larger dataset; the people table.
Note: This has a previously applied optimization of using a local cache.

Before:
```
458570   66.934    0.000   66.934    0.000 {method 'execute' of 'sqlite3.Cursor' objects}
246771   58.075    0.000   58.075    0.000 {method 'fetchone' of 'sqlite3.Cursor' objects}
```

After:
```
368883   66.220    0.000   66.220    0.000 {method 'execute' of 'sqlite3.Cursor' objects}
157084   58.160    0.000   58.160    0.000 {method 'fetchone' of 'sqlite3.Cursor' objects}
```

Once again, the number of calls to execute and fetchone are reduced but
the total time spent executing each is relatively stable.
2020-02-23 18:27:12 +00:00
..
database Removed unnecessary log messages and changed some to debug (#167) 2020-01-05 18:41:26 -05:00
dialogs Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
entrypoint Moved JsonDebugPrinter to existing utils module 2020-02-22 15:04:28 +00:00
helper Moved JsonDebugPrinter to existing utils module 2020-02-22 15:04:28 +00:00
jellyfin Moved JsonDebugPrinter to existing utils module 2020-02-22 15:04:28 +00:00
objects Attempt number 2 on a larger dataset; the people table. 2020-02-23 18:27:12 +00:00
__init__.py Begin restructing, fixed some issues related to movement 2019-11-07 22:58:44 +01:00
client.py Removed unnecessary log messages and changed some to debug (#167) 2020-01-05 18:41:26 -05:00
connect.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
downloader.py Parallelize multiple http GET requests 2020-02-19 22:18:54 +00:00
full_sync.py Allow for UI updates as the library is being sync'ed 2020-02-18 23:23:47 +00:00
library.py Removed previous fixup. 2020-02-19 23:23:21 +00:00
monitor.py Moved JsonDebugPrinter to existing utils module 2020-02-22 15:04:28 +00:00
player.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
setup.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
views.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
webservice.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00