i'm working on filtered live search module meteor.js. usecase & problem: a user wants search through users find friends. cannot afford each user ask complete users collection. user filter search using checkboxes. i'd subscribe matched users. best way ? i guess better create query client-side, send the method desired set of users. but, wonder : when filtering criteria changes, new subscription erase of old 1 ? because, if first search return me [usr1, usr3, usr5] , , after search return me [usr2, usr4] , best keep first set , add new 1 on client-side suscribed collection. and, in addition, if third research wich should return me [usr1, usr3, usr2, usr4], autorunned subscription not send me have whole result set in collection. the goal spare processing , data transfer server. i have ideas, haven't coded enough of yet share in comprehensive way. how advice me more relevant possible in term of time , performance saving ? thanks all. david it d...