-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Large datasets navigation #186
Comments
Here is an example how cursors may fetch data @aqrln |
Yes, that's okay, as there's an event (
A UI component will use an async action creator to dispatch a higher-order function to the store which will be intercepted by |
@aqrln I forgot a link to mentioned example: #194 |
@tshemsedinov store is immutable and can only be changed with pure functions (reducers) in response to actions, so if something changes, we need to copy it again. |
See #195 |
Sometimes query may return large datasets, for example
gs.select({ category: 'Person' })
called from client will send request to the server, then spread requests to all servers storing mentioned category then start receiving data by chunks in lazy mode. So client-side cursor will receive first chunk and will generateon('data')
event and first 100 records will be available at the client-side to be iterated by cursor. But we may not want to transfer more before user navigate to below grid position. Is it ok for ours gui rendering console if cursor will have no all data at once and data will arrive chunk by chunk pushing to dataset? Also how GUI can inform cursor to get next chunk? @aqrlnThe text was updated successfully, but these errors were encountered: