|
|
|
|
|
by paul
6511 days ago
|
|
If your application is a simple key/value store, then scaling won't be a problem. If it's something more complex, then such simplistic caching models won't work. For example, the FriendFeed api includes a method that fetches multiple feeds at once: http://friendfeed.com/api/feed/user?nickname=paul,bret,jim&#...
Where should one user PUT their updates such that a simple HTTP cache will know to invalidate that GET? It's not possible. The cache must understand the internals of the system in order to do proper invalidation here. |
|