A cache is a mechanism for temporary storing (caching) documents or data, to reduce access time.
0
votes
0answers
3 views
Caching parts of webpage using Memcached
I am trying to cache the code for my header which is:
$cachedHeader = $this->cache->get('header');
if(!$cachedHeader)
{
include Vs . "header.php";
$header = file_get_contents(Vs . ...
0
votes
1answer
10 views
PHPExcel memory still exhausted even with cell caching - other solutions
<b>Fatal error</b>: Allowed memory size of 134217728 bytes exhausted (tried to allocate 78 bytes) in ...
0
votes
0answers
3 views
Inconsistent L1 cache and L2 clustered cache for Hibernate
I am trying L2 cluster cache (GemFire) for Hibernate.
Is it possible the L1 cache and L2 cluster cache are inconsistent? How to deal with it?
For example:
The L1 cache at server1 already get a entity, ...
0
votes
2answers
11 views
Products stopped showing for a couple of hours with Magento
I've come across a strange issue where over the weekend one of our websites stopped displaying any products when clicking on a product category. One of my collegues tested and was getting the usual ...
-2
votes
1answer
27 views
Memcache that is not TCP-based?
I recently implemented memcache and memcached to my PHP implementation. None of them are fast enough, since they are based on TCP. It would be nice if there was a solution that stored my data across ...
0
votes
0answers
7 views
Membase logical cache sections
Does membase has a notion of cache sections?
such as:
Users cache, News cahce, Item cache etc.
When I am storing users, I want to be able to store and read from the cache section. Likewise for ...
0
votes
0answers
14 views
ZF2 Doctrine2 Entity Cache
Does somebody know how to cache doctrine2 entities in a zf2 project. I cant find a tutorial or website where this is explained. I cant find any information to start with defining a entity filecache.
...
0
votes
0answers
10 views
Chache stage to image before dragging and revert it back to original state after it (kineticjs)
I would like to improve my canvas performance while dragging and after reading this issue I wanted to implement "stage caching" as well.
Which means, I want to convert the stage to an image, right ...
0
votes
0answers
18 views
How can I tell that I am using the Azure Cloud Service for my cache rather than my local box?
So I am new to Azure caching. I have been working with the local development tools up until this point, but I would like to move to the remote Azure server.
I have read a few guides such as :
...
1
vote
2answers
25 views
Sitecore with DMS vs caching server - how do you handle it?
We're planning to introduce DMS to our customer's Sitecore installation. It's a rather popular site in our country and we have to use proxy caching server (it's Nginx in this case) to make it ...
0
votes
0answers
5 views
Vanity A/B testing with page caching
I'm using Vanity to do my A/B testing but I also have page caching for the pages the experiment is running on. Because of that, the user will actually see both options as they navigate around the ...
0
votes
0answers
17 views
JPA eclipselink bypass persistence context
There is a way to bypass the persistence context and use the entities only as wrapper of database tables?
I've read that I can set NONE to shared_cache_mode, but I've understand how it's works.
1
vote
4answers
41 views
Null reference on Cache class issue
I have code as following inside of method:
var currency = new Dictionary<string, List<Currency>>();
if (Cache["Currency"] == null)
{
//here I fill currency with data and then set it ...
0
votes
0answers
10 views
Reg: Caching the Session
Hi i am storing the created sessions, in a cache server. I am placing the sessions to the cache server in my sessionCreated overridden method of Listerner class. While printing out the cache i am ...
0
votes
0answers
14 views
Developing a Semantic cache program for HBase by java
I need to develop a program for caching hbase retrieved data on disk. i want to use semantic model (i.e. joining existing hitting data with retrieving missing data to make the response).
i have two ...
-1
votes
1answer
33 views
Real world uses of memcached for a website [closed]
I am trying to implement memcached into my website.
I have an image gallery where images are rarely changed (deleted etc). They are kept in a database.
now I know I could cache the result set ...
0
votes
4answers
35 views
how to cache the image for a android list view [closed]
I am developing an application which has a list view with image. I planned to use lrucache to cache the image.Before implementing i just want to know is there any efficient way to do this(The list ...
0
votes
0answers
10 views
How to disable cache in nginx when upload file
We configure nginx as front server, and jetty as the backend server. When we upload file, nginx will cache the uploading file, and then send to the jetty server.
Can anyone tell me how to disable the ...
2
votes
3answers
16 views
Files are not changing when I update them via FTP
I made some changes to a CSS file, uploaded it and saw no change. I cleared my browser's cache, repeated the process and still nothing. I also tried another browser and then experimented with other ...
0
votes
2answers
12 views
Test a webpage without having downloaded its resources yet
Each time I want to test a webpage that I modified, let's say I added or changed the source of an image, the browser loads that image from that page for the first time, and then when I keep refreshing ...
2
votes
1answer
30 views
Azure: requests to BLOB storage hit CPU?
I'm trying to calculate costs of delivering, viewing and clicking images using Azure services. I want to avoid using as much CPU as possible but I'm a bit confused. When someone navigates to an image ...
0
votes
0answers
27 views
Data disappears from Xcache in CakePHP
I've tried to learn as much as I could before posting here so here is my little "reasearch"
This is my one of my cache configs (this one was made to debug the issue) from /bootstrap.php:
...
1
vote
1answer
36 views
Caching sortable/filterable data in Redis
I have a variety of data that I've got cached in a standard Redis hashmap, and I've run into a situation where I need to respond to client requests for ordering and filtering. Order rankings for name, ...
-1
votes
2answers
64 views
How to cache value of a function in Python?
I have a function, which given an argument calculates a corresponding value and returns it. Returned value of the function, depends only on its parameters, so I'd like to cache (memoize) the value ...
0
votes
0answers
35 views
Cache thousands of JSON files, each one corresponding to an user
Maybe for some of you is not a big deal, but for me is the first time when i am dealing with a large amount of data which need to be cached in a smarter way in order to save resources.
So, here is ...
1
vote
1answer
27 views
Using EhCache as the main Datatasource instead of Database
Is it reliable to use ehCache as a datasource instead of a database ?
My business functionality will be to periodically collect information from a running application and store it in the Ehcache ...
0
votes
0answers
12 views
exclude dir from cache on nginx
I cached all pages like this:
http {
......
proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=test:1000m inactive=1d max_size=50g;
server {
listen 8080;
location / {
...
0
votes
1answer
22 views
Couchdb conceptual problems
As I understand, to update any object with couchdb. I have to send the whole object back since it is actually "inserting" a new revision for the same id. This is all neat and works quite well.
But ...
0
votes
4answers
34 views
How to store multi-line textbox content before page is closed and retrieve it when page loads again?
I tried to find approaches in the Internet on how to store this data somewhere without saving it to the database and found strange silence about this issue.
I have a database and web page (user form) ...
1
vote
1answer
37 views
Django caching - Pickle is slow
Working on optimization of one web-site, I found, that finally pickling of QuerySets becomes bottleneck in caching, and no matter how clever your code could be, unpickling of relatively large QS in ...
0
votes
1answer
35 views
Grails query cache is not used
I'm trying to cache the following query that is called from a controller:
def approvedCount = Book.countByApproved(true, [cache: true])
I have enabled the 2nd-level cache for the Book class, by ...
0
votes
2answers
25 views
How to cache script image
I want to implement an script that generates an thumbnail on the requested file (image). Here is a simple list of actions to understand the working of the script:
Request to server ...
0
votes
0answers
20 views
ZF2 Doctrine2 Pagination Cache
Does anybody of you know how to configure cache for zf2 pagination using doctrine2?
The way i dot it:
$cache = \Zend\Cache\StorageFactory::factory (
...
1
vote
0answers
21 views
Symfony2 AppCache performance boost
We're trying to figure out what effect enabling AppCache in the frontend controller has on caching without calling any cache directives on the response object.
I had presumed that simply adding the ...
1
vote
0answers
22 views
Symfony 2 AppCache behaving differently when under heavy load
I am experiencing a strange problem with symfony 2. I have an app which has a count down timer on it (counting down hours minutes and days).
This minute by minute timer works perfectly 90% of the ...
0
votes
0answers
43 views
Back button and Firefox scroll position - cache issue?
I'm assuming this is a bug in Firefox and have seen some bug reports over the years related to it with Firefox specifically, but the issue is when you visit an (magento) e-comm site such as [this ...
0
votes
0answers
9 views
Page load very slow, images not being cached?
If I look at the following site in firefox:
http://www.showsec.co.uk/
Some of the images are taking 2-3 seconds each to download and I'm on a fast connection. it is making the page load time very ...
0
votes
0answers
12 views
Wordpress logged in users cache
Im having a weird problem with wordpress. When a user logs in and moves to other pages, it shows as non logged in. This seems a cache problem although im not using any cache plugin.
This is a ...
0
votes
0answers
23 views
Will deleting ApplicationCache.db makes app get rejected?
To clear HTML5 cache from my iOS app, I'm deleting ApplicationCache.db using the NSFileManager. This db file is automatically created by iOS when accessing HTML5 cache content.
NSArray *libraryPath = ...
0
votes
0answers
10 views
Joomla 2.5 cache issue
my website in joomla 2.5 version, my website has cache problem in menu.
when i visit my about us page and then go to product page and some product purchase (add to cart), in product page cart has ...
0
votes
1answer
33 views
page speed font link google fonts
I have made an application in Symfony2 and passed the test as GTmetrix or pigdom and return this error:
The Following resources are missing a cache validator. Resources que no not specify a cache ...
0
votes
1answer
23 views
CouchbaseClient how to get list of all DesignDocuments in the bucket
I'm trying programmatically retrieve list of all design documents in the given bucket via CouchbaseClient. I have followed creating-views-from-sdk documentation but its only explains how to create ...
0
votes
1answer
15 views
Windows azure cache error - “Cache referred to does not exist. Contact administrator or use the Cache administration tool to create a Cache.”
I have one application on Windows Azure cloud and I'm using Windows Azure Co-Located Cache.
Some times, when I publish the website/webservice, this error appears when I call the ...
0
votes
1answer
20 views
Where to stop while caching Bitmap objects into memory in Android?
I have a ListView which shows many bitmap images (thumbnails) (downloaded, resized, 70% compressed jpeg)
I use a memoryCache to stop reading files from disk.
private static ...
0
votes
0answers
16 views
Using Google maps javascript with Sencha is too slow
I have a project for mobile, i started with developing with sencha touch, i had a view that should be contain a map of google.maps, so i used google maps api javascript. But, it give me a map very ...
0
votes
0answers
7 views
Why W3 Total Cache Opens mobile version of my Blog
I have blog and using the W3 Total Cache WordPress Plugin, I recently made some changes in W3 Total Cache settings but sometime it opens the Mobile Version site, can someone tell me how to fix this ...
1
vote
0answers
41 views
Java 1.6, Calendar and Java cache
This is my first question, but is a important question (and strange question). Sorry if my english is not good, I dont speak it often.
I have a big problem when I want to get a ...
0
votes
1answer
44 views
Cakephp 2.x Cached page taking 10-15 seconds to load
I'm trying to learn caching, but it doesn't appear to be working. I have a simple app with 2 tables, conditions, and drugs. Condition HABTM Drug. When adding a condition it shows a list of the drugs ...
1
vote
0answers
31 views
Angular http caching - hash vs html5mode
Here's the thing, we want to be able to cache our partials(templates), using http headers.
After some thought we ended up with wanting to put our templates to the initially loaded html using the ...
0
votes
2answers
46 views
Best way to synchronize cache data between two servers
Want to synchronize the cache data between two servers. Both database is sharing the same database, but for better execution data i have cached the data into Hash Map at startup.
Thus want to ...



