Hi,
We're in the throws of redesigning a screen from "old style" edit and submit, to AJAXy style with auto saving every few seconds.
The result will be way more, but way smaller server/db round trips. For example as a user edits a textarea field, we'll autosave their changes every 60 seconds via AJAX. Currently they would update one or more such fields and then submit the whole page, and the whole page would reload.
We're doing this to make the page much snappier for the user - an obvious use of AJAX. But have any of you encountered server/db performance issues related to moving to an approach like this? Are there pitfalls it would be good to be aware of upfront from a server/db roundtrip perspective?
Thanks