active questions tagged caching - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:44:55Z http://stackoverflow.com/feeds/tag/caching http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1947943/persist-local-configuration-data-in-sharepoint 1 Persist Local Configuration Data in SharePoint MagicAndi 2009-12-22T17:31:58Z 2009-12-22T23:11:17Z <p>Hi,</p> <p>I have a piece of data, a simple string containing the server name that the SharePoint solution is deployed to, that I retrieve from a configuration store in a helper method in a common DLL used throughout my solution. This helper method is used throughout my custom pages and web parts, to build a number of URLs, etc. </p> <p>I would like to persist this string, and prevent it being repeatedly retrieved from the configuration store. My Sharepoint installation is currently on a single server, but will be migrated to a SharePoint server farm in the near future, so simply determining the server name of the current request, etc isn't an option. I have looked at caching as described in the <a href="http://msdn.microsoft.com/en-us/library/bb687949.aspx" rel="nofollow">best practices for SharePoint</a>, but unless I use a coherent cache like <a href="http://www.alachisoft.com/ncache/" rel="nofollow">NCache</a> or <a href="http://msdn.microsoft.com/en-us/data/cc655792.aspx" rel="nofollow">Velocity/AppFrabric</a>, I will again have issues when the move to server farm occurs. Given that this is a single string, adding a full caching solution such as Velocity seems like overkill.</p> <p>Does anyone have any suggestions on the best way to persist this data? Am I missing something obvious here?</p> <p>Thanks</p> http://stackoverflow.com/questions/1948727/etags-iis7-kernel-cache-policy-enablekernelcache 0 ETags, IIS7, Kernel Cache Policy (enableKernelCache) Nariman 2009-12-22T19:54:00Z 2009-12-22T20:41:42Z <p>Two-part question (parts are closely related): with the default OOTB ETag policy that IIS7 employs, why don't we see the If-None-Match/304 interaction as we navigate through pages? </p> <p>The headers returned for an empty-cache request, for instance, are:</p> <pre><code>Content-Type image/png Last-Modified Thu, 03 Dec 2009 15:51:56 GMT Accept-Ranges bytes Etag "a8a0628a3074ca1:0" Server Microsoft-IIS/7.0 X-Powered-By ASP.NET Date Tue, 22 Dec 2009 19:47:36 GMT Content-Length 1780 </code></pre> <p>...and yet subsequent accesses to the page don't generate a 304 round-trip for the image?</p> <p>Also, the default <strong>applicationHost</strong> file for IIS7 has the following (1):</p> <pre><code> &lt;caching enabled="true" enableKernelCache="true"&gt; &lt;/caching&gt; </code></pre> <p>Does <strong>enableKernelCache='true'</strong> extend to all static files, freeing you of the need to register extensions explicitly to grant <strong>CacheUntilChange</strong> as the kernel policy (2):</p> <pre><code>&lt;caching&gt; &lt;profiles&gt; &lt;add extension=".gif" policy="DontCache" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" /&gt; &lt;add extension=".png" policy="DontCache" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" /&gt; &lt;add extension=".js" policy="DontCache" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" /&gt; &lt;add extension=".css" policy="DontCache" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" /&gt; &lt;add extension=".jpg" policy="DontCache" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" /&gt; &lt;add extension=".jpeg" policy="DontCache" kernelCachePolicy="CacheUntilChange" duration="0.00:01:00" location="Any" /&gt; &lt;/profiles&gt; &lt;/caching&gt; </code></pre> <p>(1) %systemroot%\System32\inetsrv\config\applicationHost.config</p> <p>(2) <a href="http://labs.episerver.com/en/Blogs/Per/Archive/2009/3/Configuring-cache-expiration-on-IIS-7/" rel="nofollow">http://labs.episerver.com/en/Blogs/Per/Archive/2009/3/Configuring-cache-expiration-on-IIS-7/</a></p> http://stackoverflow.com/questions/1948744/are-you-sure-that-ie6-caches-images-locally 0 are you sure that ie6 caches images locally? oo 2009-12-22T19:56:20Z 2009-12-22T20:10:03Z <p>i have a asp.net-mvc site and i have the same image referenced on the site about 1000 times. In all other browsers (ie7+, ff, etc) the pages loads in less than a second.</p> <p>in IE6, it says . . </p> <p>(1000 items remaining. . )<br> (999 items remaining. . )<br> (998 items remaining. . )<br> (997 items remaining. . )<br> etc . .</p> <p>and linearly does a single countdown to 0.</p> <p>If ie6 is caching these images and since its the same image, just: </p> <pre><code> &lt;img src='../../test.png'&gt; </code></pre> <p>why would it do this countdown. The IE 6 takes about 3 minutes to load, where, as mentioned, other browsers are less than a second.</p> <p>any suggestions?</p> <h2>EDIT:</h2> <p>i also have the following code for the transparent PNG issue. I am not sure if this is related but wanted to mentioned it, if it was.</p> <pre><code> &lt;!--[if lte IE 6]&gt; &lt;link href="../../Content/iefix/Site_ie6.css" rel="stylesheet" type="text/css" /&gt; &lt;style type="text/css"&gt; img, div { behavior: url(../../Content/iefix/iepngfix.htc) } &lt;/style&gt; &lt;script type="text/javascript" src="../../Scripts/iepngfix_tilebg.js"&gt;&lt;/script&gt; &lt;![endif]--&gt; </code></pre> http://stackoverflow.com/questions/1943577/rails-cachespage-being-misplaced-due-to-namespacing 1 Rails Caches_Page being misplaced due to namespacing TravisKs 2009-12-22T00:47:31Z 2009-12-22T18:41:07Z <p>I have a controller within a namespace and would like to cache it's Index. I am successfully caching pages that are not under a namespace, and successfully caching fragments as well.</p> <p>When I visit http//.../house/kitchen it successfully creates /public/house/kitchen.html. However it never finds it, so it is always writing over the cached file.</p> <p>I haven't been able to find an option with cache_page or caches_page to help me direct the cached file in the correct location.</p> <p>Another frustrating thing is that http//.../house/kitchen/table successfully reads and creates /public/houose/kitchen/table/new.html. </p> <p>I would greatly appreciate any direction!</p> <p><strong>Edit:</strong> adding details<br /> Ruby : 1.8.7<br /> Rails: 2.3.5<br /> Server: Mongrel</p> <p><strong>Edit:</strong> I've placed kitchen.html in every possible location in my public folder, this controller seems just to refuse reading it.</p> http://stackoverflow.com/questions/1945754/same-asp-net-application-multiple-iis-sites 0 Same ASP.Net application - Multiple IIS Sites TimS 2009-12-22T11:16:55Z 2009-12-22T11:46:41Z <p>Hi,</p> <p>A quick ASP.Net performance question...</p> <p>I have an ASP.Net 3.5 SP1 Application that I want to run on IIS 6. For SSL certificate reasons I need to run it on separate sites in IIS. It's a CMS, and some clients will need the add their own SSL certs.</p> <p>1) Can I run the same set of ASP.Net files on the disk on multiple sites in IIS or do I need to mirror them?</p> <p>2) What considerations do I need to make in terms of performance, e.g. having multiple database connections from each site?? Or will they be 'pooled'?! Also, I am using Linq to SQL and am caching the results using ASP.Net's cache. Will it be an overhead to have separate caches for each IIS site of essentially the same data? Are there any other performance or application design considerations for this scenario?</p> <p>3) Does running the IIS sites under the same App Pool make any difference?</p> <p>Or does anyone have a totally different recommendations?</p> <p>Any guidance you can give would be much appreciated. I'm looking for as many varied opinions and experiences as possible here, so please do add an answer if you can help.</p> <p>Cheers, Tim</p> http://stackoverflow.com/questions/1940782/does-accessing-a-single-struct-member-pull-the-entire-struct-into-the-cache 3 Does accessing a single struct member pull the entire struct into the Cache? Robert S. Barnes 2009-12-21T15:34:55Z 2009-12-21T18:06:21Z <p>I've been reading Ulrich Drepper's, "<a href="http://lwn.net/Articles/250967/" rel="nofollow">What every programmer should know about memory</a>" and in section <a href="http://lwn.net/Articles/252125/" rel="nofollow">3.3.2 Measurements of Cache Effects</a> ( halfway down the page ) it gives me the impression that accessing any member of a struct causes the whole struct to get pulled into the CPU cache.</p> <p>Is this correct? If so, how does the hardware know about the layout of these structs? Or does the code generated by the compiler somehow force the entire struct to be loaded?</p> <p>Or are the slowdowns from using larger structs primarily due to TLB misses caused by the structs being spread out across more memory pages?</p> <p>The example struct used by Drepper is:</p> <pre><code> struct l { struct l *n; long int pad[NPAD]; }; </code></pre> <p>Where <code>sizeof(l)</code> is determined by <code>NPAD</code> equals 0, 7, 15 or 31 resulting in structs that are 0, 56, 120, and 248 bytes apart and assuming cache lines that are 64 bytes and 4k pages.</p> <p>Just iterating through the linked list gets significantly slower as the struct grows, even though nothing other than the pointer is actually being accessed. </p> http://stackoverflow.com/questions/1941192/asp-net-deleting-cache-object-at-session-end 0 asp.net - deleting cache object at session end the berserker 2009-12-21T16:40:36Z 2009-12-21T17:06:26Z <p>I have a wrapper class for Caching (CachingBL) where I store users that are currently signed in (some of their session info). </p> <p>In CachingBL wrapper there is actually a dictionary of users, and I am putting that dictionary in cache like this: <code>HttpContext.Current.Cache.Insert(...)</code>:</p> <p>At the session end I would need to access to the cache like this:</p> <pre><code>var cacheBL = (CacheBL)HttpContext.Current.Cache.Get("MyCache_CacheSlot"); </code></pre> <p>But the problem is that <code>HttpContext.Current</code> is empty, so I cannot access the <code>Cache</code> object. The Cache itself is not empty (tested), but I can't figure out how to access it at <code>Session_End</code>.</p> http://stackoverflow.com/questions/1752179/hibernate-second-level-query-cache-not-working-eager-fetching 4 Hibernate Second-Level Query Cache not working Eager Fetching reach4thelasers 2009-11-17T22:04:49Z 2009-12-21T06:57:02Z <p>In NHibernate Profiler I observed that when I use eager fetching on an association, using "left join fetch" in an HQL Query or .SetFetchMode() in a Criteria Query the query no longer gets cached in the query cache.</p> <p>In fact from what I can see only very basic queries are cached. If anyone can give me some insight into what queries get cached and which ones don't I will mark answer.</p> <p>If it makes any difference, I'm using Memcached.... Is there a better choice for L2 Cache for a query-dense system?</p> <p>I'm finding this rather challenging - if I don't use eager load I have the N+1 problem (but uses cache), if I do eager load, I get all the entities from the database, but with no caching.</p> <p>It seems like there is quite a thick dividing line, both strategies have performance improvements but both strategies rob performance from the other strategy.</p> <p>If anyone can give any insight into where abouts on this 'thick line' I should be to have optimal performance, or how to 'make the line thinner'... I would be very gateful and mark the answer.</p> http://stackoverflow.com/questions/445050/how-can-i-cache-objects-in-asp-net-mvc 2 How can I cache objects in ASP.NET MVC? rball 2009-01-14T23:04:59Z 2009-12-21T03:13:03Z <p>For instance I have a BaseController that I want all Controllers to inherit from. Within there I want to have a User property that will simply grab the User data from the database so that I can use it within the controller, pass it to the views, stuff like that.</p> <p>Code would look something like:</p> <pre><code>protected User GetUser(int id) { return _repository.Get&lt;User&gt;(id); } </code></pre> <p>All fine and dandy, but now I want to cache this. I'm using this information on every single page so there is no need to go to the database each page request.</p> <p>I'd like something like:</p> <pre><code>if(_user is null) GrabFromDatabase StuffIntoCache return CachedObject as User </code></pre> <p>Make sense? Or is there a better way to do this? TIA</p> http://stackoverflow.com/questions/1923241/does-the-output-cache-respect-response-headers 0 Does the output cache respect response headers? ctford 2009-12-17T17:18:18Z 2009-12-20T22:04:31Z <p>I'm considering using the ASP.NET output cache to improve the performance of my custom HTTP handler.</p> <p>If I set an expiry header in the response, will the output cache be intelligent enough to cache the response accordingly? Or do I need to manually create an appropriate CacheDependency?</p> <p>If I gzip the response and set the Content-Encoding header, will the output cache be smart enough to prevent the response being double-gzipped if dynamic compression is turned on? What happens if the output cache has a gzipped version and a client that doesn't accept gzip requests the resource?</p> http://stackoverflow.com/questions/696738/how-to-prevent-caching-of-static-files-in-embedded-jetty-instance 0 How to prevent caching of static files in embedded Jetty instance? Sergey 2009-03-30T10:50:45Z 2009-12-19T17:18:21Z <p>I want to prevent my CSSs from being cached on the browser side. How can I do it in embedded Jetty instance?</p> <p>If I were using xml configuration file, I would add lines like:</p> <pre><code>&lt;init-param&gt; &lt;param-name&gt;cacheControl&lt;/param-name&gt; &lt;param-value&gt;max-age=0,public&lt;/param-value&gt; &lt;/init-param&gt; </code></pre> <p>How I can turn that into the code? </p> <p>Right now I start Jetty this way:</p> <pre><code>BasicConfigurator.configure(); Server server = new Server(); SocketConnector connector = new SocketConnector(); // Set some timeout options to make debugging easier. // 1 hour connector.setMaxIdleTime( 1000 * 60 * 60 ); connector.setSoLingerTime( -1 ); connector.setPort( 8081 ); server.setConnectors( new Connector[] { connector } ); WebAppContext bb = new WebAppContext(); bb.setServer( server ); bb.setContextPath( "/" ); bb.setWar( "src/webapp" ); server.addHandler( bb ); </code></pre> <p>I think I should search setControlCache somewhere in the WebAppContext area of responsibility.</p> <p>Any advices on this?</p> http://stackoverflow.com/questions/1929392/how-to-disable-browser-caching-for-a-specific-view-in-asp-net-mvc-environment 0 How to disable Browser Caching for a specific View in ASP.NET MVC Environment? Edward N. 2009-12-18T16:45:13Z 2009-12-18T21:36:52Z <p>I want to disable Browser Caching in a specific View. </p> <p>I tried <code>Response.Cache.SetCacheability(HttpCacheability.NoCache);</code> in a controller that returns the View, but that does not work.</p> <p>Any suggestions are greatly appreciated.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1923061/output-cache-versus-application-cache 3 Output cache versus application cache? ctford 2009-12-17T16:47:17Z 2009-12-18T16:43:54Z <p>I have an application that uses the application cache to store the responses generated but custom HTTP handlers. The same response is always returned to requests for the same URL, and the entire response is inserted whole into the cache.</p> <p>If an application is caching per-URL, is there any advantage to using the application cache? Or should I just be using the output cache?</p> <p>Note that because I'm using a custom HTTP handler, all of this is being done in C#, not in page directives.</p> http://stackoverflow.com/questions/1921345/caching-ajax-query-results-with-prototype 0 Caching AJAX query results with prototype seengee 2009-12-17T12:11:49Z 2009-12-18T14:24:31Z <p>I'm looking at putting together a good way of caching results of AJAX queries so that the same user doesn't have to repeat the same query on the same page twice. I've put something together using a <code>Hash</code> which works fine but i'm not sure if there's a better method i could be using. This is a rough snippet of what i've come up with which should give you a general idea:</p> <pre><code>var ajaxresults; document.observe("dom:loaded", function() { ajaxresults = new Hash(); doAjaxQuery(); }); function doAjaxQuery(){ var qs = '?mode=getSomething&amp;id='+$('something').value; if(ajaxresults.get(qs)){ var vals = (ajaxresults.get(qs)).evalJSON(); doSomething(vals); }else{ new Ajax.Request('/ajaxfile.php'+qs,{ evalJSON: true, onSuccess: function(transport){ var vals = transport.responseText.evalJSON(); ajaxresults.set(qs,transport.responseText); }, onComplete: function(){ doSomething(vals); } }); } } </code></pre> http://stackoverflow.com/questions/1483847/how-can-cachesaction-be-configured-to-work-for-multiple-formats 0 How can caches_action be configured to work for multiple formats? frankodwyer 2009-09-27T16:13:05Z 2009-12-18T09:06:39Z <p>I have a rails action which responds to requests in various formats including AJAX requests, for example:</p> <pre><code> def index # do stuff respond_to do |format| format.html do # index.html.erb end format.js do render :update do |page| page.replace_html 'userlist', :partial =&gt; "userlist", :object=&gt;@users page.hide('spinner') page.show('pageresults') end end end end </code></pre> <p>I have set this action to cache using memcached using:</p> <pre><code> caches_action :index, :expires_in=&gt;1.hour, :cache_path =&gt; Proc.new { |c| "index/#{c.params[:page]}/#{c.request.format}" } </code></pre> <p>This pattern seems to work fine for caching the HTML result but not for the JS result. The JS part always works fine when it is not coming from the cache. However when there is a cache hit, the page does not update.</p> <p>What could cause this and what is the fix?</p> <p>Update: digging into this more it looks like requests from the cache get mime type 'text/html' instead of 'text/javascript'. However I'm not sure how to fix this - is it a quirk of memcached? (Rails 2.3.2)</p> http://stackoverflow.com/questions/1923977/setting-cache-headers-with-meta-tags-always-get-private-in-cache-control-respo 0 Setting cache headers with meta tags: always get "private" in cache-control response strongopinions 2009-12-17T19:22:44Z 2009-12-17T19:53:47Z <p>I have a SharePoint master page with the following tags in the head section:</p> <pre> &lt;META HTTP-EQUIV="Expires" content="-1"> &lt;META HTTP-EQUIV="Pragma" CONTENT="no-cache"> &lt;META HTTP-EQUIV="Cache-Control" CONTENT="no-cache"> &lt;META HTTP-EQUIV="Cache-Control" CONTENT="private"> &lt;META HTTP-EQUIV="Cache-Control" CONTENT="no-store"> </pre> <p>Despite the fact that I have all these, the response for my page that uses that master page always shows "cache-control: private" in Fiddler. I have also tried </p> <pre>&lt;META HTTP-EQUIV="Cache-Control" CONTENT="no-store, no-cache, private"> </pre> <p>With the same effect. What am I doing wrong?</p> <p>Edit: I also tried setting these in the web application settings in IIS and it did not help.</p> http://stackoverflow.com/questions/1921793/internet-explorer-6-and-higher-cache-and-temporary-files 0 Internet Explorer (6 and higher) cache and temporary files michal 2009-12-17T13:30:28Z 2009-12-17T18:25:01Z <p>How to prevent browser from storing particular page in temporary files folder ? Is there any solution using meta tags ? i've tried with meta tag: pragma, expire, cache-control but it doesnt work.</p> http://stackoverflow.com/questions/1871801/cache-master-page-in-asp-net 0 Cache Master Page in ASP.NET Ortus Mallum 2009-12-09T05:36:10Z 2009-12-17T05:34:59Z <p>How can I cache the master page in ASP.NET?</p> http://stackoverflow.com/questions/1903582/what-determines-which-local-sql-server-cache-tables-can-be-cached 0 What determines which local SQL Server cache tables can be cached? Dennis 2009-12-14T21:20:16Z 2009-12-16T23:10:34Z <p>I have a c# Visual Studio app. I connected to an existing SQL Server 2008 database and the Studio created a local cache (.sdf file) for me, caching all existing tables.</p> <p>Now I added 2 additional tables the the SQL Server database and want to update my DataSet with these, but the wizard does not allow me to select the new tables as being cached. On the "Choose Tables to Cache" wizard page, I cannot check all tables to be cached.</p> <p>Update: Now it allows me to select one, but not the other of the new tables.</p> <p>What determines whether tables can be cached? How can I makes this work, with or without the wizard?</p> http://stackoverflow.com/questions/1917586/http-cache-check-with-the-server-always-sending-if-modified-since 0 HTTP Cache - check with the server, always sending If-Modified-Since Ryan Ische 2009-12-16T20:47:45Z 2009-12-16T21:20:42Z <p>I have a resource which is user generated and therefore changes at an unpredictable time (example, a user uploads a new version of a word document). I would like browsers to cache this resource and validate its cache with the server on each request (i.e. always send the If-Modified-Since header).</p> <p>From testing, I've found that Firefox handles this appropriately when I use "Cache-Control: no-cache" in the response header. However, Internet Explorer 7 is not sending "If-Modified-Since" in its request header.</p> <p>Does "Cache-Control: no-cache" achieve what I described at the beginning? If not, is there anything I can do differently to achieve what I've described across browsers?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1916909/papervision-render-to-movie-or-film-strip 0 Papervision Render to Movie or Film Strip Jonathan Fischoff 2009-12-16T19:06:30Z 2009-12-16T19:27:51Z <p>I am looking BitmapViewport3D for rendering to a texture, and I am wondering if there is a way to render to a movie or film strip for later viewing. Anything like that built into PaperVision?</p> http://stackoverflow.com/questions/1915617/stop-images-from-caching-in-rails-and-browser 2 Stop images from caching in Rails and browser? richard moss 2009-12-16T16:00:57Z 2009-12-16T18:50:50Z <p>I have created a image crop facility that I can click on an image and crop it and it saves the new cropped image over the old one, then redirects back to the original page where the image was show.</p> <p>But it still shows the old image even after a redirect and doesn't display the new one till I refresh the page.</p> <p>I have tried just using an image tag and removing the asset timestamp after the image but it still displays the old image and I have also tried adding meta tags to stop browser caching but not working.</p> <p>How can I solve this without having to do a refresh page?</p> http://stackoverflow.com/questions/1915667/http-caching-testing 0 HTTP Caching Testing dbrown0708 2009-12-16T16:06:46Z 2009-12-16T16:12:20Z <p>I have a proxying system that needs to understand the HTTP Cache-Control headers. The intent is not to perform any actual caching, but to derive tuning information based on the caching characteristics of sets of HTTP requests. I'm looking for a way to test the system.</p> <p>I can do spot checking by pushing content from well-known websites or authored sites to make sure that the system is acting correctly. However, I'd like to expand the pool of test data.</p> <p>Is there a test suite that enumerates either a set of common or complete caching headers that I can integrate with my software to make sure I'm covering all the bases I need to cover?</p> http://stackoverflow.com/questions/327035/how-to-implement-background-asynchronous-write-behind-caching-in-php 1 How to implement background/asynchronous write-behind caching in PHP? cletus 2008-11-29T01:59:53Z 2009-12-16T05:00:02Z <p>I have a particular PHP page that, for various reasons, needs to save ~200 fields to a database. These are 200 separate insert and/or update statements. Now the obvious thing to do is reduce this number but, like I said, for reasons I won't bother going into I can't do this.</p> <p>I wasn't expecting this problem. Selects seem reasonably performant in MySQL but inserts/updates aren't (it takes about 15-20 seconds to do this update, which is naturally unacceptable). I've written Java/Oracle systems that can happily do thousands of inserts/updates in the same time (in both cases running local databases; MySQL 5 vs OracleXE).</p> <p>Now in something like Java or .Net I could quite easily do one of the following:</p> <ol> <li>Write the data to an in-memory write-behind cache (ie it would know how to persist to the database and could do so asynchronously);</li> <li>Write the data to an in-memory cache and use the PaaS (Persistence as a Service) model ie a listener to the cache would persist the fields; or</li> <li>Simply start a background process that could persist the data.</li> </ol> <p>The minimal solution is to have a cache that I can simply update, which will separately go and upate the database in its own time (ie it'll return immediately after update the in-memory cache). This can either be a global cache or a session cache (although a global shared cache does appeal in other ways).</p> <p>Any other solutions to this kind of problem?</p> http://stackoverflow.com/questions/1909683/rails-page-caching-not-working-and-action-caching-throwing-filter-chain-halted 0 Rails Page Caching not working and Action Caching throwing 'Filter Chain Halted' TravisKs 2009-12-15T19:14:23Z 2009-12-15T22:19:04Z <p>Hello,</p> <p><strong>setup</strong></p> <pre> Controller -> Action Index results = Model.all (SQL Call) View Loop through and render partial from results. Call count for result row (SQL Call) Partial Manage result data and add point on Google map </pre> <p>I'm attempting to cache this page so I add <strong>caches_page :index</strong> to my controller. When I view this page it creates a successful cache of the template (but not the partial). However it still makes all of the sql calls it shouldn't.</p> <p>By changing it <strong>caches_action :index</strong> no sql calls are made, but I receive two 'Filter chain halted' errors.</p> <p>The page renders correctly so I don't know if this is something I should look over or not. </p> <p>If anyone is able to explain why caches_page isn't working, or where I should go from here on the Filter chain halted, I would greatly appreciate it. </p> <p>Thanks!</p> http://stackoverflow.com/questions/1910743/need-temporary-client-side-solution-for-handling-browser-back-button 0 Need temporary Client-side solution for handling browser "Back" button Jim 2009-12-15T22:06:53Z 2009-12-15T22:10:19Z <p>At this moment I cannot make changes to the code behind for a few weeks, but can change the .aspx file.</p> <p>We have some <strong>internal</strong> users that will click the IE7 "back" button to navigate back 5 or 6 pages (which is specifically against stated rules and training). There are a very few pages where this is causing us major problems with duplicating transactions because the buttons that should be disabled, were enabled in past pages. I am trying the OutputCache directive which causes the user to see that the "page has expired", but I anticipate that they will then click the "refresh" button, and then presents the same problem. </p> <p>As I said this is a temporary fix until I can modify the code-behind in a few weeks. </p> <p>Instead of getting the "page has expired", can I have it go to a different .aspx using javascript? Basically, I'll be sending them to the page at the level above, where they can then pick this page and enter it correctly.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1909321/advantages-of-etags-verses-updating-url 0 Advantages of ETags verses updating URL ctford 2009-12-15T18:14:07Z 2009-12-15T21:10:28Z <p>ETags allow browsers to perform conditional GETs. Only if the resource in question has been altered will the resource have to be re-downloaded. However, the browser still has to wait for the server to respond to its request.</p> <p>An alternative to ETags is to introduce a token into the URL pointing to the resource:</p> <p><code>http://example.com/css/styles.css?token=134124134</code></p> <p>or</p> <p><code>http://example.com/css/134124134/styles.css</code></p> <p>Both approaches avoid having to re-download an unchanged resource.</p> <p>However, using URLs with tokens allows the server to set a far-future expiry header on the resource. This saves the round trip taken up by a conditional GET - if the resource is unchanged then the URL pointing to it will be unchanged.</p> <p><strong>Are there any advantages to using ETags over URLs with tokens?</strong></p> http://stackoverflow.com/questions/1909474/passing-build-timestamp-to-code 1 Passing build timestamp to code ctford 2009-12-15T18:40:16Z 2009-12-15T19:20:54Z <p>I would like to give my CSS and javascript files far-future headers and add a token onto the URLs referrring to them. That way browsers don't have to re-download CSS and javascript unless I've released a new build of the site.</p> <p><code>http://example.com/css/styles.css?build=23424</code></p> <p><strong>How can I pass a build number or timestamp to my code-behind so it can add the timestamp?</strong></p> <p>Obviously C# doesn't have macros, which is what I would use in C/C++.</p> <p>I realise that this will force browsers to download assets whenever I do a new build - regardless of whether or not the build involved changing the assets. However, I would like to put a simple scheme in place before I implement anything more advanced like looking at individual file modification times.</p> http://stackoverflow.com/questions/841277/how-to-create-a-lazy-loaded-and-cached-collection-in-silverlight-csla 1 How to create a lazy-loaded and cached collection in Silverlight/CSLA Joe 2009-05-08T18:53:06Z 2009-12-15T15:00:03Z <p>I'm creating a Silverlight front end for an existing desktop app written using CSLA. One thing that I'm having trouble with is converting classes like the following:</p> <pre><code>public class SomeCollection : Csla.ReadOnlyListBase&lt;SomeCollection, SomeObject&gt; { private static SomeCollection _list = null; public static SomeCollection GetSomeCollection() { if (_list == null) { _list = DataPortal.FetchChild&lt;SomeCollection&gt;(); } return _list; } } </code></pre> <p>The code is peppered with "SomeCollection.GetSomeCollection()" This won't work on the silverlight side because all DataPortal access is asyncronous, so you have to start with something like the following:</p> <pre><code>public static void GetSomeCollection(EventHandler&lt;DataPortalResult&lt;SomeCollection&gt;&gt; callback) { DataPortal&lt;SomeCollection&gt; portal = new DataPortal&lt;SomeCollection&gt;(); portal.FetchCompleted += callback; portal.BeginFetch(); } </code></pre> <p>The callback handler gets called when the data is ready. I can certainly cache the result of this, but in the meantime any SomeCollection.GetSomeCollection() calls will fail. </p> <p>I've tried blocking until the asynchronous call completes, but I've had no luck so far. That's not a great solution, but I don't know what else to do if SomeCollection.GetSomeCollection() is called before the data has been loaded. the only other option I can think of is to allow SomeCollection.GetSomeCollection() to return null, and then somehow convert all callers to handle null return values</p> <p>Any thoughts?</p> <p>(I'm super new to Silverlight and Csla, so it's possible that I'm going about this the completely wrong way)</p> http://stackoverflow.com/questions/1873514/how-to-use-squidproxy-and-reverse-proxy-with-joomla 0 How to use Squid(Proxy and reverse proxy) with joomla vipinsahu 2009-12-09T12:10:50Z 2009-12-15T13:24:09Z <p>hi </p> <p>i want some optimization tips on <strong>joomla</strong> performance i used memcache but i dont now how to use <strong>proxy and reverse proxy ()</strong> with joomla please help Thanks</p>