Tagged Questions

0
votes
1answer
25 views

When is a cached stylesheet refreshed in Rails ?

In a Rails application, if I group several stylesheets into one using caching, will the resulting file be automatically refreshed when one of the stylesheets is updated ? stylesheet_link_tag …
0
votes
3answers
93 views

Memcache maximum key expiration time

Hi, What's memcached's maximum key expiration time? If I don't provide an expiration time and the cache gets full, what happens?
0
votes
1answer
85 views

Expiration of IPhone AdHoc Tester Provisioning Profiles

Is it possible to renew an adhoc tester's provisioning profile PRIOR to expiration? Currently, it seems I have to wait for it to expire before I can renew it -- which means that my testers lose a day …
0
votes
0answers
18 views

httpsession doesn’t expires when reverse Ajax is enabled

Hello. I have a web application that uses DWR reverse Ajax (pollAndCometEnabled set to true) In my web.xml i have set a timeout of 30 minutes for the HttpSession. Since DWR polls the server, the http …
1
vote
3answers
156 views

Zend framework session expires prematurely

This should be extremely simple, but I can't seem to get it! I'm using Zend Framework for PHP and handling sessions with the Zend_Session module. This is what I have in my Initializer (or bootstrap): …
3
votes
5answers
927 views

When is the expiration date of Visual Studio 2010 Beta?

When is the expiration date of Visual Studio 2010 Beta?
0
votes
1answer
54 views

Replacing an item in memcached without changing the expiration time

I have several items on memcached that should expire 24h after the creation time. I need to update those items, while keeping the expiration time unchanged. How can I do this? Apparently the replace …
1
vote
2answers
224 views

Trying to implement “far-future expiration date” for static files in django

I am attempting to use the far future expires method to cut down my site's load time. However when I access static files in firefox, the server still responds with HTTP/1.x 304 NOT MODIFIED. The …
4
votes
6answers
647 views

Need to implement “expiration date” for beta software C#

I am developing software in C# for a Windows CE device and I have beta software soon to be released and I want it to die after a certain date so the final release will need to be downloaded. The …
2
votes
1answer
409 views

Design Classic ASP applications to detect session expiration dynamically

I've got a Classic ASP application that relies on session; if the user leaves a screen idle and then runs a form post or other operation, I'd like to know whether the session has expired. Currently …