I need info about updating grid when database is changed.
What I have:
A client application in php which uses Extjs to provide interface to db.
What seems to be a problem:
A problem occurs when for example there are two users are using the app. The 1st user changes and commits data to db, the 2nd user isn't able to see the changed data.
Other example is when admin changes data directly in db.
What I'm trying to do:
I need to be able to load changed data to the grid in timely maner. Reloading store is an issue because the data returned is huge (takes few seconds to load) and while the app would be used by hundreds of users at one time it would create quite an overhead.
Can I load only changed rows (can be checked by timestamp)?