by martijn_himself on 5/4/21, 12:00 PM with 2 comments
In my experience most users only work on a small subset of data and work on the same or similar records and processes every day, so I'd be interested to have the application learn what subset this is for a particular user or group of users and then do 'pre-emptive' loading to increase the responsiveness of the application and improve the user experience.
If I want to avoid re-inventing the wheel, what are some good resources that deal with strategies on how to achieve this? What are common pitfalls?
by bem on 5/4/21, 12:51 PM
https://engineering.linkedin.com/distributed-systems/log-wha...
by ianpurton on 5/4/21, 12:42 PM
Then all searches etc are fast, due to not having to go to the server.
I'm not sure how they implement that, but I would probably go with a websocket that sends the latest data to the client which then stores it in Indexed DB (the browsers local database).
I don't know of any solution that does this out of the box.