active questions tagged cache - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T14:35:58Z http://stackoverflow.com/feeds/tag/cache http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1873896/way-to-synchronize-two-cores-in-simulation 2 Way to synchronize two cores in simulation thiagobrandam 2009-12-09T13:28:35Z 2009-12-09T13:59:04Z <p>Hi guys, I have to build a dual-core processor simulator in C (it's actually a multilevel memory simulation, cache L1/L2, block substitution, etc). Thing is, I'm having a hard time figuring a way to synchronize the cores (which I'm programming as threads). Any ideas how I could do a global clock? Should I change from threads to child processes? Thanks in advance</p> http://stackoverflow.com/questions/1873025/how-to-clear-sql-server-query-cache 3 How to clear SQL Server query cache PaulB 2009-12-09T10:37:43Z 2009-12-09T10:56:12Z <p>I've got a simple query running against SQL Server 2005</p> <pre><code>select * from Table where Col = 'someval' </code></pre> <p>The first time I execute the query can take > 15 secs. Subsiquent executes are back in &lt; 1 sec.</p> <p>How can I get SS2005 not to use any cached results. I've tried runnning</p> <pre><code>DBCC DROPCLEANBUFFERS DBCC FREEPROCCACHE </code></pre> <p>but this seems to have no effect on the query speed (still &lt; 1 sec).</p> http://stackoverflow.com/questions/1864178/why-doesnt-my-expires-headers-make-my-files-stay-in-cache 1 Why doesn't my expires headers make my files stay in cache? EarthMind 2009-12-08T02:12:48Z 2009-12-08T19:36:42Z <p>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 loading again, even when not refreshing with ctrl (+ shift) + r</p> <p>I'm using Firefox, cache size set to 250MB and I don't let it remove any private or cached data.</p> <p>Headers: Accept-Ranges: bytes Cache-Control: max-age=29030400, public Content-Length: 142061 Content-Type: image/png Date: Tue, 08 Dec 2009 19:18:43 GMT Expires: Tue, 09 Nov 2010 19:18:43 GMT Last-Modified: Sun, 18 Jan 2009 18:33:48 GMT Server: Apache/2.2.14 (EL)</p> http://stackoverflow.com/questions/1097986/caching-in-flex 0 Caching in Flex Xelluloid 2009-07-08T13:12:49Z 2009-12-08T17:00:02Z <p>Hello Community, </p> <p>I have the following problem, I have a flex application that works as a frontend in a client-server-application. In my application I have two sliders and a chart that moves when I drag the sliders, now when I have the following positions</p> <p>slider 1: 10 slider 2: 20</p> <p>a request is sent to the server and the response back to my flash. When I now change the sliders to</p> <p>slider 1: 10 slider 2: 30</p> <p>another request is sent to the server, because we have changed the position of slider 2. When I now turn the sliders again to the first position.</p> <p>slider 1: 10 slider 2: 20</p> <p>no request is sent to the server and the chart is moved correctly because the flash seems to know what he will receive, I think the application has cached the result. This effect only works when I open the flash application in the flash player. When I open it in the browser every slider position leeds to another request to the server. Is there a way to enable the caching also when I open it in the browser?</p> <p>Thanks in advance</p> <p>Sebastian</p> http://stackoverflow.com/questions/1867816/clear-the-cache-at-a-specific-time-in-asp-net-2-0 1 Clear the cache at a specific time in ASP.NET 2.0 JackM 2009-12-08T15:47:28Z 2009-12-08T16:12:00Z <p>So I have a process which runs at midnight which sets a start and end point for a flash object. This only needs to run once a day, so I'm obviously caching the result set.</p> <p>However, the problem I'm running into is, if the data is still cached after midnite, it's not pulling in the most correct data, until the cache expires.</p> <p>I basically need the cache to expire at 11:59:59PM, so that at 12:00am it gets the correct data.</p> <p>I'm guessing a SQL Cache Dependency on the table I'm pulling the data from would be ideal, however I have never set that up before.</p> <p>Is there a way to tell the cache to remove a specific item at exactly midnite?</p> <p>Thanks guys!</p> <p>--Absolute Expiration---</p> <p>I think I got it:</p> <pre><code>DateTime expireWeights = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, 23, 59, 59, 999); Cache.Insert("CacheItemName", itemToCache, null, expireWeights, System.Web.Caching.Cache.NoSlidingExpiration); </code></pre> http://stackoverflow.com/questions/1164892/implement-webcache-as-web-application 0 implement webcache as web application cometta 2009-07-22T12:24:24Z 2009-12-08T16:06:30Z <p>looking for someone to verify whether this approach is good or not . let say i have web app A run on tomcat. By deploying one webcache web app on the same tomcat. will that minimum the likelyhood that my web app crash due to overload by web visitors? if yes, what webcache should i used to implement this technique? or should i forget about webcache deploy this way and user service like akamai instead..? low cost is my main priority. looking forward to hear from you all</p> http://stackoverflow.com/questions/1843648/how-to-implement-a-cache-with-binary-array-as-key-and-binary-arrays-as-values-in 1 How to implement a cache with binary array as key and binary arrays as values in Java Tequila Guy 2009-12-03T22:58:26Z 2009-12-08T10:13:14Z <p>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 query a location which is an airport, i should get back that airport. Also, each location has to be stored as a byte array in cache.(as the exposed interface for querying the cache has byte[] as the parameter for location) Other considerations are:</p> <ol> <li>The retrieval has to be very fast, as fast as possible </li> <li>The cache is loaded only once at system startup.It doesn't change after getting loaded. </li> <li>As its loaded only once, we can keep it sorted if that speeds up the retrieval.</li> </ol> <p>What I have got so far:</p> <p><strong>Approach 1</strong></p> <p>Create a thin wrapper over byte[] array, lets say ByteWrapper. Put each location(both airports and cities) as a key in map(TreeMap?). Use lists of ByteWrapper(containing airports where ever applicable) as values.</p> <p><strong>Approach 2</strong></p> <p>Create multi dimensional byte[] array which is sorted on location. Its essentially a map. Then use binary search to locate the key and return results.</p> <p>What approach would you suggest? Please let me know in case you have better ideas Thanks</p> http://stackoverflow.com/questions/1865484/search-a-file-for-a-string-and-execute-a-function-if-string-not-found-in-python 0 Search a file for a string, and execute a function if string not found; in python Nazarius Kappertaal 2009-12-08T08:23:35Z 2009-12-08T08:47:24Z <pre><code>def checkCache(cachedText): for line in open("cache"): if cachedText + ":" in line: print line open("cache").close() else: requestDefinition(cachedText) </code></pre> <p>This code searches each line of a file (cache) for a specific string (cachedText + ":"). </p> <p>If it does not find the <strong>specific string</strong>, within the <strong>entire file</strong> it is meant to call another function (requestNewDefinition(cachedText)).</p> <p>However my above code executes the function for each non-matching line.</p> <p>How can one search a file for a string (cachedText + ":"), and if the string is not found <strong>anywhere in the file</strong>, execute another function?</p> <p>Example Cache:</p> <pre><code>hello:world foo:bar </code></pre> http://stackoverflow.com/questions/1859422/what-proportion-of-users-have-the-flex-framework-cached 0 What proportion of users have the flex framework cached? Andrew Aylett 2009-12-07T11:25:43Z 2009-12-07T14:01:43Z <p>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.</p> <p>There's an added complication in that we're using the data visualisation components too, and we may have a choice as to which version of the framework we use. Any information is greatly appreciated -- I've tried searching, to no avail.</p> http://stackoverflow.com/questions/1694828/how-to-store-object-not-string-in-session-in-play-framework 0 How to store object (not string) in session in play framework? del-boy 2009-11-07T23:41:47Z 2009-12-06T17:40:28Z <p>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.</p> <p>Being stateless by its nature, play sends entire session to user in cookie and receives it on next request, so it allows only limited amount of data in session.</p> <p>What I want to do is to fetch User object from DB on user login, and keep it in session, so I could access it from templates and so on (I have some methods in User class that I need to call in order to customize UI), but if I put User object, play calls its toString method and puts that in session.</p> <p>I found that recommended way is to put larger amount of data into Cache, but I don't know how to access it from template (I guess I could make method with @Before annotation and add user to renderArgs, but that does not seem very clean to me). Another problem is that Cache has limited lifetime, so my object can disappear.</p> <p>Does anyone has experience with this kind of problems?</p> <p>Is there any way to use server side session with play? I don't need REST functionality for this project, so, as far as I am concerned, application can save state... </p> http://stackoverflow.com/questions/977249/java-object-caching-which-is-faster-reading-from-a-file-or-from-a-remote-mach 1 java object caching , which is faster , reading from a file or from a remote machine. Kumar225 2009-06-10T18:04:21Z 2009-12-06T11:22:44Z <p>I am at a point where I need to take the decision on what to do when caching of objects reaches the configured threshold.</p> <p>Should I store the objects in a indexed file (like provided by JCS) and read them from the file (file IO) when required<br> or<br> Have the object stored in a distributed cache (network, serialization, deserialization)</p> <p>We are using Solaris as OS.</p> http://stackoverflow.com/questions/1209715/asp-net-c-caching-database-results-when-how-invalidate-on-per-record-basis 0 ASP.NET C#: Caching Database Results, When/How Invalidate (on per-record basis) Alex 2009-07-30T22:17:14Z 2009-12-06T11:13:08Z <p>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 rarely changes.</p> <p>A good number of users have the authority to edit this information though, and if it is edited, it is required that the change be visible immediately to everybody.</p> <p>At the same time I'd like to limit refetching this information from the database every time anybody views this information, especially because days might go by without any change happening.</p> <p>I could refetch the entire list every time a minute change is made, but that doesn't seem the right way either. So I'm looking for a way to cache everything, invalidate &amp; refetch only a part that is changed (say, one record) while keeping everything else cached. The page would primarily feed off the cache then every time it is viewed, and fetching data becomes an exception.</p> <p>How could I go about this design &amp; code wise? Your help is very much appreciated.</p> http://stackoverflow.com/questions/977727/browser-cache-api-for-non-ie-browsers 2 Browser Cache API for non IE browsers MaxK 2009-06-10T19:38:08Z 2009-12-05T16:18:50Z <p>IE has WinInet API, such as GetUrlCacheEntryInfo, to read and manipulate IE browser cache. </p> <p>Is there a similar API for non IE browsers such as Firefox or Chrome? If so where can I get more info?</p> <p>Thanks</p> <p>Update:</p> <p>According to following (<a href="http://stackoverflow.com/questions/61453/accessing-firefox-cache-from-an-xpcom-component">http://stackoverflow.com/questions/61453/accessing-firefox-cache-from-an-xpcom-component</a>) the WinInet function GetUrlCacheEntryInfo() can be accomplished by nsICacheSession.openCacheEntry() to get nsICacheEntryDescriptor. Is there an equivalent WinInet function CreateUrlCacheEntry() which will create a cache entry?</p> http://stackoverflow.com/questions/1686440/why-is-one-installation-of-ie8-unexpectedly-loading-pages-from-cache-while-oth 0 Why is one installation of IE8 (unexpectedly) loading pages from cache, while others are not? Chris Marisic 2009-11-05T13:14:03Z 2009-12-05T08:38:54Z <p>I have website that is ASP.NET with Forms Authentication, clicking the logout button does correctly call FormsAuthenication.SignOut() so it invalidates the cookie.</p> <p>All machines in the office are using IE8 and work fine, just like Firefox. But one installation of IE8 will load cached copies of authenticated pages even after logging out when navigating using links on the pages instead of automatically being redirected to the login.aspx for attempting to reach a secured resource.</p> <p>If they attempt to do any postback or refresh the page it will correctly redirect them but I don't understand why this is occuring, I can't reproduce this does anyone else have any idea what could cause and how to stop it?</p> http://stackoverflow.com/questions/1803472/how-to-access-thumbnail-cache-of-vista-and-7-using-c 0 How to access thumbnail cache of vista and 7 using c# murasaki5 2009-11-26T12:43:50Z 2009-12-04T15:49:48Z <p>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 i do it?</p> http://stackoverflow.com/questions/1840880/how-to-cache-images-in-asp-net -1 How to Cache images in asp.net Pragnesh Patel 2009-12-03T16:00:37Z 2009-12-04T10:30:43Z <p>What is the best approach to caching images in asp.net?</p> http://stackoverflow.com/questions/1822295/design-code-to-fit-in-cpu-cache 3 Design code to fit in CPU Cache? Casey 2009-11-30T20:49:01Z 2009-12-04T05:28:13Z <p>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 memory. Is it possible to specify that you want the program to run from cache or at least load the variables into cache? We are writing simulations so any performance/optimization gain is a huge benefit.</p> <p>Thanks for your help. If I've made a duplicate or you know of any good links explaining CPU caching then point me in that direction.</p> http://stackoverflow.com/questions/1844529/form-textbox-caching-problem 0 Form Textbox Caching Problem Dave Hunt 2009-12-04T02:40:10Z 2009-12-04T04:00:27Z <p>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 the data entered in the textbox to cache like the regular text inputs?</p> http://stackoverflow.com/questions/1843750/maintaining-a-caching-appliance 0 Maintaining a Caching Appliance Maria Abrahms 2009-12-03T23:15:24Z 2009-12-03T23:18:18Z <p>What are typical cache appliance maintenance tasks and schedule for same? </p> http://stackoverflow.com/questions/1470502/hibernate-clean-collections-2nd-level-cache-while-cascade-delete-items 2 Hibernate: Clean collection's 2nd level cache while cascade delete items Yurii Soldak 2009-09-24T08:57:47Z 2009-12-03T19:39:05Z <p>I have a problem Hibernate does not update 2nd level cache for a collection of items which are subject of cascade removal.</p> <h3>Details</h3> <p>Assume we have an object Parent which has Parent.myChildren collection of Child objects. Now we have also object Humans with Humans.myAllHumans collection and all Parent and Child objects are in that collection.<br/> Now we <b>session.delete(parent)</b> and all the children are cascade removed from the database, but Humans.myAllHumans collection's cache is not updated! It still assumes that cascade deleted objects are in database and we hit following exception while trying to iterrate the collection later:<br/> <b>org.hibernate.ObjectNotFoundException: No row with the given identifier exists: [foo.Child#751]</b></p> <h3>Approaches tried</h3> <p>1) I've tried <b>SessionFactory.evictCollection()</b> approach, but as I understand it is not transaction safe and hard removes data from 2nd level cache, I do not want that.</p> <p>2) I can also manually (programatically) remove each object from the myAllHumans collection. In this case hibernate does update 2nd level cache. This approach I'll like to avoid since it just makes cascade delete feature useless.</p> <h3>Expected</h3> <p>I'd like hibernate to be smart enough to update the collection's cache automatically. Is it possible?<br/> I'm using EhCache now, do you think using another cache implementation or configuring EhCache may help?</p> http://stackoverflow.com/questions/1839299/tool-for-monitoring-hibernate-cache-usage 0 Tool for monitoring Hibernate cache usage oo_olo_oo 2009-12-03T11:18:23Z 2009-12-03T11:40:13Z <p>Is there any tool which would allow for monitoring Hibernate 2nd level cache usage? I know that I could use Hibernate API for retrieving such information. But what should I do when I have application which doesn't read the information itself, and I can't modify it? Is there any way to read cache statistics from the outside of the application? </p> http://stackoverflow.com/questions/1820369/yslow-says-my-javascript-file-is-no-longer-cached-after-combining-5-files-and-pac 0 YSlow says my JavaScript file is no longer cached after combining 5 files and packing them Nils 2009-11-30T15:08:00Z 2009-12-03T11:19:33Z <p>I started with 5 normal human-readable JavaScript files - they were around 10 KB in total.</p> <p>After using <a href="http://en.wikipedia.org/wiki/YSlow" rel="nofollow">YSlow</a>, I decided to merge the 5 files and pack them using Dean Edwards' packer. Now I have 1 file that is 4.5 KB.</p> <p>When I re-run YSlow, it is now showing the JavaScript file in the primed cache under 'statistics', where previously (when I had the separate files) the 5 files would have been cached.</p> <p>So I now have 4 fewer HTTP requests but the total page weight for the primed cache is up by 4.5 KB.</p> <p>Am I doing something wrong?</p> <p>I am still planning to put a far-forward expiry date header on my JavaScript folder so this issue will likely disappear, but I'm still interested to know why it won't cache the JavaScript files.</p> http://stackoverflow.com/questions/1385964/how-to-get-the-browser-to-cache-images-with-php 2 How to get the browser to cache images, with php? Johan 2009-09-06T15:45:52Z 2009-12-03T11:13:28Z <p>I'm totally new to how to cache images.</p> <p>I output all images in a gallery with php, and want the images already shown, to be cached by the browser, so the php-script don't have to output the same image again. All I want is the images to show up faster.</p> <p>when calling an image I do like this:</p> <pre><code>&lt;img src="showImage.php?id=601"&gt; </code></pre> <p>and the <code>showImage.php</code>-file does:</p> <pre><code>$resultat = mysql_query(" SELECT filename, id FROM Media WHERE id = '".$_GET['id']."' "); $data = mysql_fetch_assoc($resultat); ... //Only if the user are logged in if(isset($_SESSION['user'])){ header("Content-Type: image/jpeg"); //$data['filename'] can be = dsSGKLMsgKkD3325J.jpg echo(file_get_contents("images/".$data['filename']."")); } </code></pre> http://stackoverflow.com/questions/1838948/cache-java-compilation 1 Cache java compilation kogut 2009-12-03T10:10:08Z 2009-12-03T10:41:12Z <p>Is there any posibility to cache java compilation like ccache does for C or C++ compilation?</p> <p>I have a lot code to compile, and I compile the same code many times, so it took a lot of time. So I thought to cached it to speed up.</p> http://stackoverflow.com/questions/1838305/dot-net-3-5is-appconfig-dynamically-updated-in-cache-on-run-time 1 Dot net 3.5:is appconfig dynamically updated in cache on run time? sahil garg 2009-12-03T07:43:42Z 2009-12-03T08:06:19Z <p>After application start up ,if i change some value in app.config ,is it reflected in cache object through which i access appconfig properties.</p> <pre><code> string currentValue = ConfigurationSettings.AppSettings[currentKey]; </code></pre> <p>If it is not so what is possible way to do so?</p> http://stackoverflow.com/questions/1835741/javascript-caching-question 2 Javascript caching question LoveMeSomeCode 2009-12-02T20:54:53Z 2009-12-02T21:25:50Z <p>I'm making an application that draws a lot of widgets and tiles on a canvas. The core UI will be defined by a long string of characters and drawn at page load by javascript. Since that core UI is big, >250K, and never changes, whats a good way to cache that?</p> <p>I know I COULD just stick it in a variable at the top of the file, but is there a more efficient way? Like if wrote:</p> <p>var img = new Image(); img.src = 'moose.png'</p> <p>I assume that the browser will download and cache this image, so that on subsequent requests it won't have to hit my server again. But how do I do that with a chunk of text?</p> <p>EDIT: basically I'm looking for an alternative to this:</p> var myUI = "AAAABBBCBVBVNCNDGAGAGABVBVB.... etc. for about 20 pages"; http://stackoverflow.com/questions/1832892/how-to-reduce-the-total-memory-hogging-by-compacting-my-objects-in-java 1 How to reduce the total memory hogging by compacting my Objects in Java? DKSRathore 2009-12-02T13:25:23Z 2009-12-02T20:18:47Z <p>I have a table with around 20 columns with mostly consisting of varchars and decimals. This table has almost 1.5M rows. But few things are common in them like column1 consists of only 100 distinct strings , column2 has almost 1000 and column3 has almost 500. </p> <p>Right now, I am storing all these column values in a map with Key as first 5 columns and Data as rest of columns. My task is such, I need to initialize all these at the start of the task. </p> <p>What pattern(like Flyweight, etc) or data structure should I use to minimize my Object storage?</p> <p><strong>Why I need pre-load of all data?</strong></p> <p>Assume the whole data of the table as a tree and the victims can be at any leaf, trunk or at root. So for each entry[this is coming from different place], I need to see if there is any match in the tree.</p> http://stackoverflow.com/questions/1826252/is-there-something-like-asynchronous-caching-with-ehcache-and-springmodules 0 Is there something like asynchronous caching with ehcache and springmodules? PeterP 2009-12-01T13:40:16Z 2009-12-02T11:18:10Z <p>Is it possible to have cached queries asynchronous, so that no frontend user actually has to wait for a heavy query to finish? (I.e. heavy query is running as background thread, while (expired) data is delivered from cache.</p> <p>Use case: A web page displaying data, needing some time (too long to wait for when requesting a page) to be collected from the database. Simply caching the data for one hour means that every hour one user has to wait for the query to finish.</p> <p>I would like to have something like this: The first user to request (expired) data from cache, will be delivered expired data. In the background, a separate thread is started which will update the cached data from the database. The next user will see fresh data.</p> <p>Is there a standard solution for this, without having to do the caching oneself? Ideally, using ehcache &amp; springmodules.</p> <p>Thanks :)</p> http://stackoverflow.com/questions/1825206/2nd-level-hibernate-cache-understanding 1 2nd level hibernate cache understanding cometta 2009-12-01T10:04:33Z 2009-12-01T17:28:27Z <p><strong>1.</strong>for 2nd level cache, can only set timeout period but cannot force refresh/clear cache of entity? or putthing annotation <code>@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)</code> like auto refresh/clear the cache each time doing saveorupdate/mergeupdate? what is hibernateTemplate.flush() relate to this?</p> <p><br> <strong>2.</strong> is it good to enable 2nd level cache for all entity ? what is the average timeout that you folks use for ehcache for this case if i do not want too long caching time as i cache all entities?</p> http://stackoverflow.com/questions/1612069/is-there-a-way-to-determine-if-flash-has-cached-an-object 0 Is there a way to determine if Flash has cached an object? flashnewb 2009-10-23T08:25:25Z 2009-12-01T17:00:05Z <p>Greetings,</p> <p>I am writing a networked flash application. The server (an independent C++ app) sends resources for the flash client to manipulate and/or display, eg, images and sound. I'm assuming that the browser stores these resources in its cache. Since the resources can be pretty big, I don't want to resend them from the server each time the client restarts the app. I can't use the LSO (flash cookies) because those won't update if the cache gets independently cleared by the browser or the user.</p> <p>So for the flash gurus.. 1) Is there a way to detect if an item has been cached, eg to query the browser cache for a crc or something? Maybe load the object offscreen and (somehow) detect if it shows up? -OR- 2) Is there a way to avoid using the normal browser cache and cache things myself, in some kind of larger LSO? </p> <p>Thanks for the help.</p>