Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the differences between Session and Local (client-side only) Collection?

In Meteor, I have a little confusion between Session and Local Collection.

I know that Session is a temporary reactive key-value store, client-side only, and is cleaned on page refresh. Local collection seems to be the same: reactive, temporary client-side storage, cleaned on page refresh with more flexible function like insert, update & remove query like server-side Mongo collection.

So I guess I could manage everything in Local Collection without Session, or, everything in Session without Local Collection.

But what is the best and efficient way to use Session and/or Local collection? Simply, when to use Session and not use it? And when to use Local collection and when not use it?

like image 216
Rocky Signavong Avatar asked Dec 10 '14 15:12

Rocky Signavong


2 Answers

As I read your question I told myself that this is a very easy question, but then I was scratching my head. I tried to figure out an example that you can just accomplish with session or collections. But I didn't found any use-case. So let's rollup things from begin. Basically you already answered the question on your own, because it is the little sugar that makes collections something special.

When to use a collection?

Basically a collection is a database artifact. Imagine you have a client-server-application. All the data is persisted in the server side storage. Now you can use a local collection to provide the user a small subset of the servers collection. So a client collection is a database with reduced amount of data. The advantage is that you can access the collection with queries. You can use the same queries on server and client. In additon a collection always contains multiple objects of the same type. Sometimes you produce data on client for the client. No server interaction needed. Than you can use a local collection. A local collection provides the same functionality as a normal collection without server communication. This should be used if you have multiple objects with the same structure and in special if you'd like to use query operators.

You can also save the data inside a session object. Session objects can contain multiple objects as well. But imaging you want to find an object in an objectarray indexed with a special id. Than you need to iterate throw the whole array in order to find this object. You have to write additional logic, that can be handled with collection like magic. Further, collections return cursors. A cursor is an reactive object that just changes if the selected data changes. That means if you use find with an id. Than this object just rerenders when the object to this id changes. With session you can't. When a session changes you need to rerender all depending objects.

When to use a session?

For everything else. Sessions are often just small objects that contain some configuration logic. It is basically just one object and not a multiple occurency of equal objects. Haven't time now to go in detail but if it does not fit the collection use-cases you can use sessions.

Have a look at this post that describes why sessions should not be overused.

like image 149
chaosbohne Avatar answered Sep 18 '22 19:09

chaosbohne


I assume that by local collection you mean: new Mongo.Collection(null)

The difference is that local collections do not survive hot code pushes. A refresh will erase Session, but hot code push will not, there's special code in Meteor to persist the values of the Session variable in the case of a hot code push..

like image 20
cwohlman Avatar answered Sep 21 '22 19:09

cwohlman