Tagged Questions
The zend-cache tag has no wiki summary.
4
votes
2answers
505 views
Zend Config Ini Caching
My Zend app uses 3 ini config files, with a total of over 200 lines to parse, containing over 100 instructions. Are these files parsed every request? Some people say they are (like here and here). If ...
4
votes
2answers
190 views
Why is my PHP error log lagging behind by 2 hours?
When checking php.ini, from both phpinfo and php -i on the command line, my timezone is set to Africa/Johannesburg. So my timezone is GMT +2.
I wrote a tiny snippet to check the time is right as ...
3
votes
1answer
90 views
What's the current state of accelerators in Zend?
I hear about accelerators such as these in PHP. I believe APC is making it to PHP 6 also.
Eaccelerator
APC
Xcache
What's the state of accelerators in Zend? I see a Zend_Cache. Is it the standard ...
2
votes
2answers
446 views
Patterns for clearing Zend Cache
I started using Zend Cache (APC backend) and all is well in terms of returning cached values instead of hitting the Database each time. However, heres my problem:
$cache_key = ...
2
votes
2answers
550 views
ZF: Disable Resource Plugin in application.ini
How can I disable cache in the cli enviroment?
Reason being, the system user that executes the script is not allowed to write to the cache directory, thus the script is unable to execute.
In my ...
2
votes
1answer
196 views
Zend_Cache usage howtos
are there any good tutorials on zend cache except their official documentation ?
2
votes
1answer
512 views
Where should I implement cache within Zend_Db?
I'm looking to implement a cache within Zend_Db, there isn't any native method to provide a cache to Zend_Db, so I'm wondering where should I do it.
I took a look to the Zend_Db_Table_Abstract (I'm ...
2
votes
4answers
352 views
How to use Zend_Cache Identifier?
i think iam getting crazy, iam trying to implement Zend_Cache to cache my database query. I know how it works and how to configure.
But i cant find a good way to set the Identifier for the cache ...
1
vote
2answers
66 views
Where to put cache clearing code
I'm putting together a ZF based CMS at the moment, and am currently caching my Zend_Navigation object, as well as the html rendered by renderMenu(). So at the moment, whenever the menu changes, I ...
1
vote
1answer
113 views
Storing data in Zend_Registry vs Zend_Cache
So far i have been using Bootstrap.php to load my application.ini config into Zend_Registry as well as an instance of logger. I was wondering if storing these inside Zend_Cache would be a better ...
1
vote
4answers
126 views
How to use Zend_cache with memcached in a distributed way?
The title of this question might be confusing but the problem is simple.
I'm using Zend_Cache with memcached as a backend. I have two module called "Last articles" and "Popular articles". Both of ...
1
vote
1answer
322 views
When I try to cache private images (an action with modifed headers), the headers are omitted
I have the following action:
public function viewImageAction()
{
$this->_helper->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender();
$filename = ...
1
vote
1answer
256 views
Zend Cache - problem with deleting cache files
I have an strange problem with Zend Cacke (File Backend) running on linux with apache and php 5.2
The files are stored in /myspace/tmp1
Directory has the persmission:
drwxrwxrwx 2 nobody nogroup ...
1
vote
1answer
166 views
Zend_Cache unserialize - memory hog?
I've setup Zend_Db_Table_Abstract so it uses metadata cache and then profiled with xhprof to see how much memory it uses.
Turns out 34 calls from _setupMetadata to Zend_Cache_Core::load use up 7mb ...
1
vote
2answers
433 views
How do I use Zend Cache on this particular problem
I have an action that renders two different view scripts based on whether the user is logged in or not.
class IndexController extends Zend_Controller_Action
{
....
public function ...
1
vote
0answers
392 views
Zend_Paginator and cache. How can I read the datas that I have sent to cache
I register the data to cache and I see the foliowing :
zend_cache---Zend_Paginator_1_42242d5fa3c4e4b7758810c276163e8a
but I can't read.
$request = $this->getRequest();
$q = new Model();
...
1
vote
1answer
499 views
Zend cache doesn't kick in
Ok, here's the problem:
$frontendOptions = array(
'lifetime' => 7200,
'debug_header' => true, // for debugging, but it doesn't work...
'regexps' => array(
// Cache the static ...
0
votes
1answer
23 views
What is the preferred cache directory using Zend_Cache?
On my dev system (Ubuntu 11.10) I have no problems writing my cache files to /tmp but I'm concerned about what will happen to my application when deployed. I currently have shared hosting so I'm ...
0
votes
1answer
40 views
Getting all keys in a namespace with Zend Data Cache
With the Zend Data Cache - PHP API, is there a method for retrieving all keys in a namespace?
Essentially, I need to replicate what you can do with apc_cache_info, such as
$info = ...
0
votes
1answer
74 views
Enable Cache plugin for ZFDebug
I'm developing a web-site with Zend Framework and I wish to use ZFDebug.
I followed the installation instructions, described here, but I don't initialize Zend_Cache in the bootstrap (define cache ...
0
votes
0answers
39 views
Zend Page Cache stops working
Hi this is how I initialize Zend_Cache_Frontend_Page, I want it to ONLY cache articles controller, and nothing else:
protected function _initPageCache() {
$frontendOptions = array(
...
0
votes
1answer
89 views
Zend Config Performance Optimization
I am optimizing a Zend Framework based application, and I am sure using ini based config slows down overall performance as the sites need to read and parse ini on each and every page request. Now I ...
0
votes
1answer
28 views
Does caching(APC) of an instance of Zend_Acl affect security?
It wouldnt make it easier to do something nasty, would it?
0
votes
0answers
41 views
Zend_Cache memfs file vs APC
I just wanted to ask if anybody has got any experience with PHP Caching, or even in particular Zend_Cache with respect to using as backend a file on memfs in contrast to using APC for data caching.
...
0
votes
1answer
185 views
Storing an instance of Zend_Log in Zend_Cache/Zend_Registry with/without custom helper
I am trying to store an instance of Zend_Log (with Zend_Log_Writer_Stream) to Zend_Cache(preferably) or Zend_Registry(fallback) but with the custom helper as an abstraction layer instead of direct ...
0
votes
1answer
79 views
using md5() to generate cache keys in Zend_Cache
I have some issues saving identifiers for cache objects in Zend_Cache. The Zend_Cache identifiers have to be really sanitized (no special chars, no spaces, etc). Some of my internal identifiers have ...
0
votes
2answers
296 views
How do I add Cache Control expires header to images?
I'm trying to speed up things on my site. YSlow alerts me that my images lack expires headers. But how do i apply such headers on images?
My application is based upon the zend framework. The images ...
0
votes
1answer
203 views
Zend_Cache cache file disappears
I have a zend cache which stores an array from the db. The cache can be read & updated fine. But the actual cache file seems to disappear after a day or so. I thought that adding ...
0
votes
0answers
72 views
Zend Cache Exception with message 'use of end() without a start()'
actually i have started the cache thru $cacheinstance->start('cachefilename'), and then only, i have stopped it like $cacheinstance->end(), even though i got the error "Zend Cache Exception with ...
0
votes
1answer
318 views
ini-config for Zend_Cache_Frontend_Page
How to configure Zend_Cache_Frontend_Page in application.ini? I cannot define regexps (see example http://framework.zend.com/manual/en/zend.cache.frontends.html#zend.cache.frontends.page.examples. It ...
0
votes
1answer
564 views
Clear Zend Page cache programmatically
I am using Zend's full page caching for certain URL's. Is there a way to clear the page cache for a certain URL programmatically....(when the content of the URL is modified)
0
votes
2answers
344 views
Zend_Cache: After loading cached data, character encoding seems messed up
First; On my development server (localhost; default XAMPP on OSX) everything works fine, though when I deploy the exact same code (and data) to the staging server (managed Apache2 on Redhat) it ...
0
votes
2answers
1k views
Zend error: The apc extension must be loaded for using this backend
Hi I am getting the above error setting up my Zend application on a public hosted server. I have another application on the same sever which works ok so I assume APC is obviously loaded. How can I ...
0
votes
2answers
531 views
Generating a unique id for a given string using php
I'm using Zend_Cache_Core with Zend_Cache_Backend_File to cache results of queries executed for a model class that accesses the database.
Basically the queries themselves should form the id by which ...
0
votes
2answers
235 views
Zend page caching similar to smarty?
I there a way to make zend_cache treat front end view similar to smarty? I would like to reduce load times and page caching seems the best way todo this.
Also it would need something similar to ...
0
votes
1answer
507 views
How to use Zend Cache with SimpleXML objects?
I'm trying to cache the user timeline of a Twitter feed using Zend_Service_Twitter which returns its results as a SimpleXML object. Unfortunately the regular serialize functions (which Zend Cache ...
0
votes
1answer
296 views
Zend_Cache And UTF-8 Problem
I'm trying to save UTF-8 characters with Zend_Cache (like Ť, š etc) but Zend_Cache is messing them up and saves them as Å, ¾ and other weird characters.
Here is a snippet of my code that saves the ...
0
votes
1answer
613 views
Zend Cache Core and APC - I don't understand how old cache entries get invalidated
For Zend_Cache_Frontend_Core you can define a lifetime and, according to the documentation, a "automatic_cleaning_factor".
According to the manual, this property specifies on how many writes to the ...
-1
votes
1answer
48 views
What is the best practice in caching? What are the limits?
Im using Zend_cache to cache results of some complicated db queries, services etc.
My site is social, that means that there is a lot of user interaction.
Im able to cache users data here and there ...