How can I determine when an InnoDB table was last changed?

后端 未结 3 727
攒了一身酷
攒了一身酷 2020-12-10 13:52

I\'ve had success in the past storing the (heavily) processed results of a database query in memcached, using the last update time of the underlying tables(s) as part of the

3条回答
  •  有刺的猬
    2020-12-10 14:22

    If you're not really interested when the database was changed, but want to know wether or not one database table was changed you should look into MySQL CHECKSUM TABLE

    Hope this helps.

提交回复
热议问题