限制Ember数据请求

时间:2018-03-08 21:04:25

标签: ember.js ember-data throttling

我正在使用Ember Data与具有速率限制的REST API进行交互。

有关如何每秒限制Ember数据请求到X请求的任何建议吗?

2 个答案:

答案 0 :(得分:1)

首先,如果您想使用所有 AJAX请求执行操作,我强烈建议ember-ajax。这为您提供了修改所有AJAX请求的单点。接下来关于节流。我建议ember-concurrency在评论中,让我详细说明一下。 ember-concurrency为您提供了timeout方法,该方法返回一段时间后将解决的承诺。这样可以轻松进行节拍:

export default AjaxService.extend({
  ajaxThrottle: task(function * (cb) {
    cb();
    // maxConcurrency with timeout 1000 means at maximum 3 requests per second.
    yield timeout(1000);
  }).maxConcurrency(3).enqueue(),
  async request() {
    await new Promise(cb => ajaxThrottle.perform(cb));
    return this._super(...arguments); // this should make the actual request
  },
});

答案 1 :(得分:0)

经过一番努力,我设法让promise-throttleApplicationController内工作。限制为每秒4个请求:

import PromiseThrottle from 'dispatcher/application/promise-throttle';
import { Promise } from 'rsvp';

export default DS.RESTAdapter.extend(DataAdapterMixin, {
  init() {
    this.set('promiseThrottle', new PromiseThrottle({
      requestsPerSecond: 4,
      promiseImplementation: Promise
    }));
  },
  ajax: function (url, type, options) {
    return this.get('promiseThrottle').add(this._super.bind(this, url, type, options));
  }
  ...
});