jellyfin-kodi/jellyfin_kodi/objects/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
..
__init__.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
artwork.py Dont modify a list as you are traversing it. The result is 2020-02-16 18:41:14 +00:00
kodi.py Attempt number 2 on a larger dataset; the people table. 2020-02-23 18:27:12 +00:00
movies.py Attempt to reduce the number of calls to execute and fetchone. 2020-02-23 18:00:38 +00:00
music.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
musicvideos.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
queries.py Attempt number 2 on a larger dataset; the people table. 2020-02-23 18:27:12 +00:00
queries_music.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
queries_texture.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00
tvshows.py Initial work on Kodi 19 (and Python 3) support 2020-01-04 03:32:30 +01:00