codeu-2018-team31 / codeu_project_2018

Apache License 2.0
0 stars 2 forks source link

Refactor data store to allow for constant time lookups #41

Open willjschmitt opened 6 years ago

willjschmitt commented 6 years ago

Data store looks to be mostly just a json no-sql database, which we should be able to do some fun stuff with to make very fast lookups (no db joins etc), but right now we have stuff like the UserStore iterating over all users to get the user, and we are going to introduce more of this O(N) code.

Let's figure out what we can do with the data store and be able to make O(1) lookups.

willjschmitt commented 6 years ago

Assigning to Joyce to research a possible way to do this.