Right now all entries into a Backbone collection get concatenated into a single string. A screenshot of how a collection (with models) is represented is attached here:

Although this might be efficient (you're writing a single string!) it's not very friendly to debug. In a server database it would be very common to split the models up so that they each have their own key.
Now without rushing things (this would take a while to implement), what are your thoughts on splitting collections and models up?
Right now all entries into a Backbone collection get concatenated into a single string. A screenshot of how a collection (with models) is represented is attached here:
Although this might be efficient (you're writing a single string!) it's not very friendly to debug. In a server database it would be very common to split the models up so that they each have their own key.
Now without rushing things (this would take a while to implement), what are your thoughts on splitting collections and models up?