The Alternative PHP Cache (APC) is a free and open opcode cache for PHP. Its goal is to provide a free, open, and robust framework for caching and optimizing PHP intermediate code.

learn more… | top users | synonyms

1
vote
0answers
20 views

apc_fetch PHP 5.3 with Zend Server

I encountered a problem when I wanted to show a process bar in a file upload. My php version is 5.3.14. My zend server version is 5.6. I turned off the Zend Data Cache & Zend Optimizer+. Here is ...
1
vote
1answer
33 views

APC only half works

I'm trying to get APC to work as a persistent data structure. I wrote a test script to illustrate the problem I'm running into. <?php function set_true() { apc_store("test", ...
0
votes
1answer
17 views

Where is apc.ini stored

where is apc.ini stored when using MAMP Pro? I tried to locate apc.ini through the terminal without success. I would like to increase the overall cache-size.
0
votes
1answer
28 views

Why won't APC work in PHP v5.5 on Travis-CI?

So, I'm writing a PHP programme that uses APC for it's caching mechanism. I'm using TravisCI for my continuous integration and testing it on PHP 5.3, 5.4 and 5.5. The tests for APC pass for v5.3 and ...
1
vote
0answers
14 views

Trouble installing php-devel on CentOS [migrated]

Working with a PHP install and trying to install APC on a server to help with speed issues with an application we're developing. We are having trouble getting phpize installed. phpize is not on the ...
0
votes
0answers
17 views

configure: error: C compiler cannot create executables on install pcre for php

I'm trying to install apc for php and therefore need pcre installed first. I have a mac os x 10.8, xcode 4.6.2, command line tools installed and check all similar posts but nothing works. Searching ...
-1
votes
0answers
28 views

phpize and php-devel CentOS [closed]

Working with a PHP install and trying to install APC on a server to help with speed issues with an application we're developing. We are having trouble getting phpize installed. phpize is not on the ...
0
votes
0answers
28 views

Zend Cache APC error Failed saving metadata to metadataCache

I seems to be stuck trying to get APC to work with Zend Cache from a CLI. I know APC is installed ( can see it in infophp(); I can dump the code and see that the APC value is being pulled in from a ...
1
vote
1answer
29 views

Why WaitForMultipleObjectsEx acquires mutex during APC?

I have 5 threads (on a multicore system) that simultaneously wait for: A mutex M to be acquired An event E to be signaled I'm using WaitForMultipleObjectsEx(..., TRUE, INFINITE, TRUE) since the ...
0
votes
1answer
36 views

How to configure APC with Symfony2

I can't find any documentation as to how to configure APC with Symfony2. I don't want to write any specific code or have anything advanced, just the basic APC setup with Symfony2. I've uncommented ...
0
votes
0answers
32 views

Can't clear APC cache in symfony2 app

I cant clear APC cache the output: array(15) { ["num_slots"]=> int(521) ["ttl"]=> int(0) ["num_hits"]=> float(6) ["num_misses"]=> float(2) ["num_inserts"]=> float(65) ["expunges"]=> ...
-1
votes
2answers
32 views

PHP Caching on Client or Server?

I was reading about PHP Cache (APC, MemCache, etc), suddenly a question raised in my mind The Caching in PHP is Done at which level? Either it is done on Client side or Server side? Either on Hard ...
0
votes
0answers
11 views

How to combine APC and Memcached Magento

I need to understand if Memcached and APC can work together in Magento local.xml file configuration. Below if my actual configuration file, and i would like to add also APC, is this possible? APC ...
0
votes
0answers
17 views

APC user cache has high misses, low hits

I have a wordpress site, with APC installed. All seems well with file caching: Cached Files 602 ( 90.6 MBytes) Hits 117589 Misses 624 Request Rate (hits, misses) 2.93 cache requests/second Hit ...
0
votes
0answers
38 views

Full page cache with APC possible? (CakePHP)

I have my website cached using full page caching. So for every page an html file is created. As I am using CakePHP, I can define that APC caching would be used instead of file caching. However, if ...
0
votes
0answers
43 views

symfony2 APC properly restarting server and clearing cache?

I have symfony2 app with APC. Lets say i need to update some file like add <p> New content </p> to my files... or its a bigger file like changing something in web/app.php. And there ...
0
votes
0answers
122 views

PHP-FPM - upstream prematurely closed connection while reading response header

Already saw this same question - upstream prematurely closed connection while reading response header from upstream, client But as Jhilke Dai said it not solved at all and i agree. Got same exact ...
1
vote
0answers
33 views

How does Alternative PHP Cache apc_bin_dumpfile() and apc_bin_loadfile() exactly works?

Does apc_bin_dumpfile() dumps generates (and saves in filesystem) opcode/bytecode from php script? Does apc_bin_loadfile() somehow uses above mentioned code? I have script1.php function foo(){ ...
0
votes
2answers
71 views

PHP APC causing Apache to seg fault

First, versions: Apache 2.2.22 PHP 5.3.10 Ubuntu 12.04 LTS (everything updated) APC 3.1.7 (installed via APT and not PEAR) The problem I'm experiencing is that when issuing a graceful restart (sudo ...
0
votes
0answers
9 views

Does high APC fragmentation matter?

I'm seeing a high amount of fragmentation on APC (>80%) but performance actually seems pretty good. I've read another post that advises disabling object caching in wordpress / w3tc, but I wonder if ...
0
votes
1answer
34 views

PHP APC get and set value atomically

Is it possible to do this in the atomic way? $myvalue = apc_get("mykey"); apc_store("mykey",0); // log/deal with myvalue "mykey" is increasing on other process frequently, and I don't want to miss ...
0
votes
2answers
33 views

Installing Alternative PHP Cache using PECL and Fink

I would like install the Alternative PHP Cache (APC) on my mac. With PECL this is supposedly a rather painless operation. All one needs to do is: sudo pecl install apc As others have reported on ...
0
votes
0answers
47 views

Memory adjustments for magento with php5-fpm , Nginx, APC, Mysql

I am using magento with php5-fpm , Nginx, APC, and Varnish. When there is varnish hit, the load time is very good. But on varnish miss, the site takes toomuch time to load. I have seen through htop ...
0
votes
1answer
53 views

How to optimize the single webserver for Magento CE with all cache mechanisms

I am trying to optimize my webserver for Magento CE 1.7. My task is to use all possible techniques available at this moment to speed up page load. Below I wanted to share my thoughts with you and ask ...
0
votes
3answers
34 views

how to restrict apc to only one installation of drupal on virtual server

I have one virtual server with 2 installations of drupal. One is for testing purposes. Is it possible to restrict usage of APC to certain directories only, so the testing page won't eat the same ...
1
vote
1answer
23 views

Issue configuring APC

I'm trying to configure APC but it doesn't seem to take my changes. I an on ubuntu server 12.10 I use nginx and php-fpm. All my changes are in this file: /etc/php5/mods-available/apc.ini ...
0
votes
0answers
42 views

Codeigniter,Php ,Cache,APC Cache,

My cache drivers are Not Loaded in Controller..My Code is:- class democache( public function testcache(){ var_dump($this->load->driver('cache', array('adapter' => 'apc', 'backup' => ...
0
votes
0answers
33 views

APC will not completely clear

I am using php fpm + nginx and I have an issue where certain files will simply not clear from the cache. There is around 5MB work will persits regardless of doing the following: Clearing the apc ...
0
votes
0answers
70 views

mod_php APC confused by symlinks, includes same files twice - why?

I have an Apache vhost set up for the folder (say website) which is a symlink to another one linking to a folder with a current release (say website_N) where N is release number (website -> ...
0
votes
1answer
47 views

Symfony2: deleted property still used in query

I deleted a property (teaser) from an enitiy (sale). I used the CLi to update the database & entites: $ php app/console doctrine:schema:update --complete --force $ php app/console ...
0
votes
0answers
31 views

apc with cakephp working but the load time is more that a db hit

Hi i am just new to cakephp framework. I am using apc cache mechanism to scale the site and reduce my db hits. I am using php5.3.9 and mysql and both combined in bitnami lampstack 5.3.9 and using ...
0
votes
1answer
21 views

yum doesn't find php-apc

I'm trying to install apc (alternative php cache) on a centos 5 server. I tryed yum search apc and only finds American Power Company related packages. How can I install apc?
0
votes
0answers
39 views

Should I use APC to cache long prepared SQL strings

Kind of a two-parter here. I'm working on a project (PHP/Postgres) where I'm loading mid-size csv files into our system (5k - 100k lines). These csv records are to be inserted into a table with ...
0
votes
0answers
36 views

APC with Magento. Setup but is not caching anything

We APC installed, this is working correctly as a apc.php file is displayed. We have added the apc section of the code in the local.xml file in mageno, cleared magento cache etc, however APC is still ...
0
votes
1answer
78 views

Slow initial website load, faster subsequent loads

My site www.slople.com is a mix of self-programmed things (the whole slope-finder etc and the mobile-site) and Wordpress/Buddypress-things (Slople Unity, Blog). I notice that the page takes longer to ...
0
votes
0answers
93 views

pecl install apc isn't working. shtool does not exist

I am an absolute newbie…didn't learn about SSh till an hour ago and got my first VPS 2 hours ago. Still learning! So I'm installing MediaWiki and need to add APC extension. But having a lil trouble. ...
1
vote
1answer
1k views

APC and child pid XXXXX exit signal Segmentation fault [closed]

First I had xCache installed on server, I had xCache on lot of my servers but in this one after couple of days you go nothing except a blank page with this error in apache error log: child pid XXXXX ...
0
votes
1answer
73 views

Symfony2 Application on CentOS with php_apc enabled is slow

I have a VPS with the following configuration: 512 Mb 2x CPU CentOS is the OS and it is running the typical LAMP stack (Apache, MySQL and PHP 5.3). php_apc enabled. -The cache folders are writable. ...
0
votes
0answers
181 views

PHP Fatal error: Internal Zend error - Missing class information for in [file] [closed]

I'm getting the above error occasionally on my site. I've seen it reported around the web in several different places as being related to APC. Does anyone know of an appropriate fix? I've tried ...
0
votes
0answers
32 views

APC cache clearing itself after every 2-4 page loads

I have a Godaddy VPS server running CentOS with Apache as the web server. I am using this server for my e-commerce website based on magento. I am facing the pfollowing problem: 1. On opening the ...
0
votes
1answer
88 views

How to prevent APC cache fragmentation

I installed APC on my Ubuntu server which is hosting one big Wordpress site. There are about 50k posts (comments are disallowed) and 30k page views per day. APC considerably increased the speed of the ...
0
votes
1answer
67 views

APC Installed Correctly But Not Working [closed]

I've installed APC by using command: pecl install apc and everything was fine, this is the output Build process completed successfully Installing '/usr/include/php/ext/apc/apc_serializer.h' ...
1
vote
0answers
140 views

Zend Server 6 apc not working

I have installed Zend Server 6 on Windows 7. Downloaded non thread safe apc dll (php_apc-3.1.10-5.4-vc9-x86.zip) from here. When I add apc extension in php.ini zend server is not starting. There were ...
3
votes
0answers
189 views

CakePHP: caching with APC still creates cache files, no performance benefit

My problem: I am making Apache Benchmark test to see if CakePHP APC engine works. However, if I setup Cake's caching configuration to use APC engine, the cache files with serialized cached data are ...
0
votes
0answers
54 views

Cache entries disappears from apc cache even if timeout = 0

I'm working on a page that displays data, some are stored in DB, others are retrieved from an API. To limit aPI calls (I'm limited per day) I store data from the API in a cache entries. I use APC to ...
0
votes
3answers
92 views

What happens when php file is replaced while being executed on linux apache server? [duplicate]

Is there a way to safely replace php file on a server, while it is being executed by the user? I mean - do I have to hunt for the right moment of silence to upload new version of the file with the ...
0
votes
0answers
78 views

WordPress and APC's 'Unable to allocate memory for pool"

I have a typical cPanel server running the usuals where I'm running about ~20 small WordPress sites. Each site has W3TC installed and configured with the recommended settings. The server has 2GB of ...
0
votes
1answer
67 views

Magento how to cache a productCollection

Ive noticed my home page is taking a long time to load - over 6 seconds infact according site24x7.com, so ive been switching elements off to try and determine what is the cause, and it is down to 2 ...
0
votes
2answers
37 views

What does the $values parameter of apc_add() do?

http://php.net/apc_add I don't understand what the $values parameter actually does - it is not even shown in function signature. Can anybody help explain?
3
votes
1answer
103 views

APC making PHP 5.3 slower?

I recently learned about APC (I know, I'm late to the show) and decided to try it out on my development server. I did some benchmarking with ApacheBench, and to my surprise I've found that things are ...

1 2 3 4 5 13