Deferring frequent updates in MySQL
Posted
by cdecker
on Stack Overflow
See other posts from Stack Overflow
or by cdecker
Published on 2010-03-17T01:41:53Z
Indexed on
2010/03/17
2:21 UTC
Read the original article
Hit count: 374
I have frequent updates to a user table that simply sets the last seen time of a user, and I was wondering whether there is a simple way to defer them and group them into a single query after a short timeout (5 minutes or so). This would reduce queries on my user database quite a lot.
© Stack Overflow or respective owner