Express implements a server side session object that lets you store data specific to a client. How would you do the equivalent in Meteor?
strack recommended using a coll
A session behaves a little differently than a collection. If you are truly looking for a session based solution, use the Session.set() method to of course set your values, and retrieve them when needed with Session.get().