1
vote
4answers
72 views
How to implement a cache with binary array as key and binary arrays as values in Java
I have a requirement to create a java cache which holds all the cities and airports. So, if i query the cache for a location, lets say a city, it should return all the airports in that city and if I …
0
votes
3answers
27 views
Search a file for a string, and execute a function if string not found; in python
def checkCache(cachedText):
for line in open("cache"):
if cachedText + ":" in line:
print line
open("cache").close()
else:
…
0
votes
1answer
19 views
Why doesn’t my expires headers make my files stay in cache?
I'm using valid expires and no-cache headers for my static files and they stay cached for as long as I keep browsing, but when I close my browser and use it back after a while I see the static files …
0
votes
2answers
15 views
What proportion of users have the flex framework cached?
We have a Flex application which doesn't currently use the Flex framework as an RSL. We're considering switching, but we're not sure what proportion of users will already have the framework cached.
…
0
votes
2answers
98 views
How to store object (not string) in session in play framework?
I have a project for school and I have to use Java. Recently I found play framework and I want to try to use it. It's easy enough for a quick start, but I ran into a problem with session.
Being …
1
vote
5answers
94 views
java object caching , which is faster , reading from a file or from a remote machine.
I am at a point where I need to take the decision on what to do when caching of objects reaches the configured threshold.
Should I store the objects in a indexed file (like provided by JCS) and read …
0
votes
5answers
397 views
ASP.NET C#: Caching Database Results, When/How Invalidate (on per-record basis)
Hello,
my application shows contact information (from approx. 2000 contact records with various detail information (names, phone numbers etc.) that form the base of a contact grid) which typically …
2
votes
5answers
184 views
Browser Cache API for non IE browsers
IE has WinInet API, such as GetUrlCacheEntryInfo, to read and manipulate IE browser cache.
Is there a similar API for non IE browsers such as Firefox or Chrome? If so where can I get more info?
…
0
votes
2answers
56 views
Why is one installation of IE8 (unexpectedly) loading pages from cache, while others are not?
I have website that is ASP.NET with Forms Authentication, clicking the logout button does correctly call FormsAuthenication.SignOut() so it invalidates the cookie.
All machines in the office are …
0
votes
1answer
21 views
How to access thumbnail cache of vista and 7 using c#
Hi, I wanted to access the thumb cache of vista and 7 to be used in my ImageList. I know how to do it in XP by means of the thumbs.db files, but in vista and 7 the thumbs.db is not present so how will …
-2
votes
1answer
64 views
How to Cache images in asp.net
What is the best approach to caching images in asp.net?
3
votes
5answers
184 views
Design code to fit in CPU Cache?
When writing simulations my buddy says he likes to try to write the program small enough to fit into cache. Does this have any real meaning? I understand that cache is faster than RAM and the main …
0
votes
1answer
18 views
Form Textbox Caching Problem
I have a PHP form, with various input fields and textboxes. If you submit and go back, all of the data that was submitted in the input fields remains, however the textboxes are blank. How can I get …
0
votes
1answer
7 views
Maintaining a Caching Appliance
What are typical cache appliance maintenance tasks and schedule for same?
2
votes
2answers
190 views
Hibernate: Clean collection’s 2nd level cache while cascade delete items
I have a problem Hibernate does not update 2nd level cache for a collection of items which are subject of cascade removal.
Details
Assume we have an object Parent which has Parent.myChildren …
