Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
You lied. I cleared my browser cache and I'm still getting compilation issues in my C# program.
-
Set your servers cache headers to
LESS.
THAN
AN HOUR.
AGED.
then and if the age time runs out, next time the request will have smthng like
```psuedo
if( request.content.hasChanged ){
sendHeader(200, defaultHeaders);
sendContentFromURL(request.url);
} else {
sendHeader( 304, cacheHeaders);
//Less than a hour.
}
``` -
C0D4681455y@010001111 using cache to "fix" performance isn't an excuse to use cache, fix your performance issues if that's the case.
Related Rants
Repeat after me:
CLEAR.
CACHE.
FIXES.
EVERYTHING.
rant
cache