I'm using Dexie DB version 2.0.4 with Angular 8 and electron. I'm realizing that the more data I input in the DB and the more queries I make to it the slower my DB calls become.
I'm a Dexie noob and unsure if there is a way to close connections after I make certain requests or if there is something getting stuck in the memory.
Anyone has any idea how to debug or confirm what can the issue be ?
Here is an example of one of the requests I make to the DB:
await this.indexdb.TableName.filter(SomeProperty => SomeProperty == Property).toArray();
await this.indexdb.TableName.put({'SomePropertyName':'SomePropertyValue'})
Thanks a lot