クライアント側の _underscore.js を使用してクリック率を調整できることは知っていますが、サーバー側の呼び出しをどのように調整しますか? 同じパターンを使用することを考えましたが、残念ながら _throttle では Meteor.userId() を区別できないようです。
Meteor.methods({
doSomething: function(arg1, arg2){
// how can you throttle this without affecting ALL users
}
);