Skip to content
This repository was archived by the owner on Oct 5, 2020. It is now read-only.
This repository was archived by the owner on Oct 5, 2020. It is now read-only.

Splitting facets and results back-end calls #544

@grtjn

Description

@grtjn

Sometimes facets are big, and thus slow. To not have them slow down showing of results, you can make mlSearch do separate calls for them. It requires adding something like this above ctrl.init() in search.controller.js:

    // override internal search to split results and facets call..
    ctrl._search = function() {
      this.searchPending = true;

      // results only
      var promise = this.mlSearch.search({
        'return-results': true,
        'return-facets': false
      })
      .then(this.updateSearchResults.bind(this));

      // facets only
      this.mlSearch.search({
        'return-results': false,
        'return-facets': true
      })
      .then(this.updateSearchResults.bind(this));

      this.updateURLParams();
      return promise;
    };

    // override the updateSearchResults to handle split of results and facets..
    ctrl.updateSearchResults = function updateSearchResults(data) {
      var oldFacets = ctrl.response.facets;
      var oldResults = ctrl.response.results;

      superCtrl.updateSearchResults.apply(ctrl, arguments);

      if (!ctrl.response.facets) {
        ctrl.response.facets = oldFacets;
      } else {
        ctrl.response.results = oldResults;
      }

      return ctrl;
    };

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions