Is there a way to tell meteor a collection is static (will never change)? -
on meteor project users can post events , have choose (via autocomplete) in city take place. have full list of french cities , never updated. i want use collection , publish-subscribes based on input of autocomplete because don't want client download full database (5mb). there way, performance, tell meteor collection "static"? or make no difference? could suggest different approach? when "want tell server collection static", aware of 2 potential optimizations: don't observe database using live query because data never change don't store results of query in merge box because doesn't need tracked , compared other data (saving memory , cpu) (1) can rather constructing own publish cursor. however, if client observing same query, believe meteor (at least in future) optimize it's still 1 live query number of clients. (2), not aware of straightforward way because potentially mess data merging on multiple publications , subscript...