流星排序随机收集

时间:2014-11-21 12:20:44

标签: sorting random meteor

我想从Meteor集合中获取一个随机排序的集合。什么是最好/最有效的方式?

Mongo options are controversial

我目前正在使用underscore _.shuffle非常整洁,例如:

Template.userList.helpers({
  users: function() {
    return _.shuffle(Meteor.users.find().fetch());
  }
});

我使用Jade,所以也许在模板级别有一个选项?

1 个答案:

答案 0 :(得分:0)

您可以使用Lodash _.shuffle,如下所示:

Template.userList.helpers({
  users: function() {
    return _.shuffle(Meteor.users.find().fetch());
  }
});

尽管看起来很滑稽, 是一个不同之处:

下划线source

_.shuffle = function(obj) {
  var set = isArrayLike(obj) ? obj : _.values(obj);
  var length = set.length;
  var shuffled = Array(length);
  for (var index = 0, rand; index < length; index++) {
    rand = _.random(0, index);
    if (rand !== index) shuffled[index] = shuffled[rand];
    shuffled[rand] = set[index];
  }
  return shuffled;
};

Lo-Dash (为了便于比较,稍加修改source

_.shuffle = function(collection) {
  MAX_ARRAY_LENGTH = 4294967295;
  return sampleSize(collection, MAX_ARRAY_LENGTH);
}

function sampleSize(collection, n) {
  var index = -1,
      result = toArray(collection),
      length = result.length,
      lastIndex = length - 1;

  n = clamp(toInteger(n), 0, length);
  while (++index < n) {
    var rand = baseRandom(index, lastIndex),
        value = result[rand];

    result[rand] = result[index];
    result[index] = value;
  }
  result.length = n;
  return result;
}

您可以查看this SO discussion,以便更深入地了解两个库的比较。

Underscore和Lo-Dash都使用你很难做的Fisher-Yates shuffle&#34;更好&#34;比。