Questions tagged [cache-expiration]
67 questions
0
votes
1 answer
expire_action for pagination pages
ruby 2.2.2p95
rails 4.2.1
My cache generation is working nincely.
Index Page
http://localhost:3001/produtos
Write fragment views/localhost:3001/produtos (11.0ms)
Pagination Page
http://localhost:3001/produtos/pagina/2
Write fragment…

maiconsanson
- 243
- 3
- 16
0
votes
1 answer
Caching dataset passing value or reference?
I'm going to cache an object. Obvious and popular check before read policy from
http://msdn.microsoft.com/en-us/library/ms227644(v=vs.80).aspx
if (Cache["customerDataSet"] == null)
{
dataSet = DataSetConfiguration.CustomerDataSet;
…

Jarosław Maruszewski
- 71
- 1
- 6
0
votes
1 answer
Java cache with expiration since first write
I have events which should be accumulated into persistent key-value store. After 24 hours after key first insert this accumulated record should be processed and remove from store.
Expired data processing is distributed among multiple nodes, so use…

matejuh
- 396
- 4
- 13
0
votes
1 answer
Gzip compression and cache expiration not working
I have configured cache expiration and gzip compression in .htaccess file but its not working according to yslow chrome extension stats.
Here is my .htaccess
# ----------------------------------------------------------------------
# Mod Rewrite
#…

Yousuf Memon
- 4,638
- 12
- 41
- 57
0
votes
1 answer
Trying to Programmatically Expire the HTTP Response Headers
Our Team is building a C# project with a Silverlight module. We deploy to a Windows 2008 with IIS 7. I’m trying to Programmatically Expire the HTTP Response Headers Associated with a Folder called ClientBin immediately. I know how to do it manually…

crazyTech
- 1,379
- 3
- 32
- 67
-2
votes
2 answers
How to fix this "expiration not specified" issue according to GTMatrix?
I have a website WeeTech Solution. And whenever i check my website on “GT Matrix” is show me the number of issue like...
• https://www.weetechsolution.com/css/content_slider_style.css (expiration not specified)
How to fix this issue?

Jenny Smith
- 1
- 1
- 3
-3
votes
2 answers
Caching JSON on server using expiration date?
This is some working code that I wrote to call a JSON file and cache it on my servers.
I'm calling the cached file. If the file exists I use json_decode on it. If the file doesn't exist I then call the JSON and decode that. Then after calling the…

Michael d
- 305
- 2
- 16