Caching paginated results, purging on update - how to solve?

前端 未结 8 963
忘掉有多难
忘掉有多难 2021-02-04 18:08

I\'ve created a forum, and we\'re implementing an apc and memcache caching solution to save the database some work.

I started implementing the cache layer with keys like

8条回答
  •  太阳男子
    2021-02-04 18:21

    Be very careful about doing this kind of optimisation without having hard facts to measure against.

    Most databases have several levels of caches. If these are tuned correctly, the database will probably do a much better job at caching, than you can do your self.

提交回复
热议问题