jellyfin-kodi/jellyfin_kodi/objects
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
..
kodi Attempt number 2 on a larger dataset; the people table. 2020-02-23 18:27:12 +00:00
__init__.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
actions.py Fix playlist paths 2020-02-14 20:15:14 -05:00
movies.py Removed unnecessary log messages and changed some to debug (#167) 2020-01-05 18:41:26 -05:00
music.py Removed unnecessary log messages and changed some to debug (#167) 2020-01-05 18:41:26 -05:00
musicvideos.py Removed unnecessary log messages and changed some to debug (#167) 2020-01-05 18:41:26 -05:00
obj.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
obj_map.json Begin restructing, fixed some issues related to movement 2019-11-07 22:58:44 +01:00
tvshows.py Removed unnecessary log messages and changed some to debug (#167) 2020-01-05 18:41:26 -05:00
utils.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00