2

我在使用 Angular 4 应用程序中的 Dexie 从我的 IndexedDB 查询选择项目(1.000 到 4.000 之间)时遇到问题。

表中最多只有 20.000 个项目,但选择这些项目需要几秒钟(Chrome 61 上为 5 秒,iOS 10 和 iOS 11 上最多(甚至更多)20 秒)

下面是我的服务,它获取两个不同的表并通过返回 ObservableloadItems()

@Injectable()
export class ItemService {

    private buildings: Dexie.Table<Building, string>;
    private people: Dexie.Table<Person, string>;

    private activeZip: string;

    constructor(
        private db: IndexeddbService,
    ) {
        this.buildings = this.db.table('buildings');
        this.people = this.db.table('people');
    }

    loadItems(): Observable<{
        buildings: Building[],
        people: Person[]
    }> {
        return Observable.combineLatest(
            this.loadBuildings(),
            this.loadPeople(),
        ).map(([buildings, people]) => {
            return {
                buildings,
                people
            };
        });
    }

    private loadBuildings(): Observable<Building[]> {
        return Observable.from(this.buildings.where('zip').equals(this.activeZip).toArray());
    }

    private loadPeople(): Observable<Person[]> {
        return Observable.from(this.people.where('zip').equals(this.activeZip).toArray());
    }
}

生成的 Observable 使用 ngrx 效果进行异步处理,该效果分派一个将数据写入状态的 Action,因此组件可以呈现信息。

@Effect()
loadItems$: Observable<Action> = this.actions$
    .ofType(actions.ActionTypes.LOAD_ITEMS)
    .map(_ => this.itemService.setActiveZip(this.localStorageService.getActiveZip()))
    .switchMap(_ => this.itemService.loadItems())
    .map(items => new actions.LoadItemsSuccessAction(items))
    .catch(error => Observable.of(new actions.LoadItemsFailAction(error)));

我尝试通过https://github.com/raphnesse/dexie-batch以块的形式“延迟加载”这些项目,但生成的批次需要 500 多毫秒才能到达。

我在哪里可能存在性能瓶颈?我已经尝试在 Angular 的区域之外运行此查询,但这并没有产生和性能改进。

4

1 回答 1

4

经过大量时间和调试,我发现了以下 Dexie PR,它破坏了 Chrome 和 Safari 中的 IndexedDB 2.0 getAll 功能:https ://github.com/dfahlander/Dexie.js/pull/579

恢复到 Dexie 2.0.0-beta.11 后,性能提高了大约 10 倍(通过游标到 getAll 的原始数据库查询从 600-700 毫秒回到 60 毫秒)

编辑:Dexie 2.0.1 已发布,并针对此问题进行了正确修复

于 2017-09-29T10:08:43.983 回答