When showing a very big unordered list in a web application, how might one keep that list in sync with a server-generated (and memoized) copy while neither re-overwriting the entire list with Ajax (and hence sending the entire list over the wire) nor paginating?
|
|
You can poll the server at a regular interval that the server script compares the previous list with the new list and sends back the difference. Finally, change the list according to the difference. |
|||
|
|
|
You could use This is very powerfull but needs your client's browser to be compatible with HTML5's websockets. Nevertheless, they are many frameworks that allows you to use alternate ways when websockets are not available, a famous one is |
|||
|
|