前提・実現したいこと
現在、TypeScriptでIndexedDBを利用した、プログラムを開発しています。
IndexedDBの処理で問題を抱えており、原因と解決策をさがしています。
発生している問題
プログラム内で、IndexedDBが存在する場合、一度削除をして再度作り直すような処理を作成しています。
削除前のデータベースにはかなり大量のデータが登録された状態です。
その時、ある一定の確率(明確に発生条件がわからない)でIndexedDBのOpenで処理が停止してしまいます。
正常に次の処理が実行されることもあります。
該当のソースコード
TypeScript
1indexedDB.deleteDatabase(dbName) 2 3const open = indexedDB.open(dbName); 4// 移行処理が続く
補足情報(iD)
IDBFactoryのメソッドのコメントをみてみました。
TypeScript
1/** 2 * Attempts to open a connection to the named database with the specified version. If the database already exists 3 * with a lower version and there are open connections that don't close in response to a versionchange event, the request will be blocked until all they close, then an upgrade 4 * will occur. If the database already exists with a higher 5 * version the request will fail. If the request is 6 * successful request's result will 7 * be the connection. 8 */ 9 open(name: string, version?: number): IDBOpenDBRequest;
おそらく、コネクションが残っている場合はリクエストがブロックされるのでは?と理解しているのですが、同様の症状が発生された方、有識者方に意見をもらいたく投稿させていただきました。
当方 GoogleChrome バージョン: 78.0.3904.97(Official Build) (64 ビット)を使用しています。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。