|
|
|
|
|
by badminton1
3584 days ago
|
|
Caching not necessarily means more speed. Sometimes it can make things slower. 1. Get from cache 2. Determine if cached value is valid 3. Query data store 4. Put data store value in cache 5. Return data Instead of just getting it directly. In order to be able to cache you need to think about good cache invalidation. And client side caching won't work against malicious users. |
|