Tagged Questions
1
vote
2answers
47 views
Are PHP Closure Objects eligible for garbage collection
I was wondering if anyone knows if PHP's anonymous functions are eligible for garbage collection?
I know that functions created with create_function are not garbage collected but I haven't been able ...
1
vote
1answer
68 views
When unset() should really be used?
I'm curious about using of unset() language construct just about everywhere, where I took memory or declare some variables (regardless of structure).
I mean, when somebody declares variable, when ...
1
vote
1answer
41 views
Should I unset my PHP array values?
Does garbage collection on array values work like the garbage collection on normal variables?
I.e. will the complete $array be kept in memory until each array key is unset or the whole array no ...
1
vote
0answers
68 views
PHP session.save_path & session.gc_maxlifetime behaviour
Sorry if this has been asked elsewhere, but I can't find the answer.
I recently made a site for which I've made significant use of session variables for the first time. I've never bothered to adjust ...
0
votes
1answer
47 views
Finding who is referencing an object in php?
Is there a way in PHP to figure out from where an object is being referenced, in order to find stale references not actually needed any more?
Some background:
I am debugging/optimizing a large ...
7
votes
2answers
115 views
Why does PHP's garbage collector slow down perfomance, and how to manage memory without it?
This relates to a PHP 5.3 Cli application that processes a lot of data in a complex way, taking hours to run. Someone discovered that turning off garbage collection made it run a great deal faster ...
0
votes
0answers
82 views
Memcache ignoring session.gc_maxlifetime so sessions aren't expiring
I have a web application written in PHP which was using standard file storage for sessions (/var/lib/php5)(Ubuntu 12.04 if it matters).
We want to move to using memcache, which I installed/setup, and ...
0
votes
2answers
38 views
Returning element within DocumentFragment fails, because node no longer exists
Here is a testcase that highlights an error I've run into. I think the node is being destroyed/garbage collected/something after the function returns -- is there a better way I can go about this?
...
1
vote
1answer
87 views
When does APC remove old entries?
I'm struggling to find any logic in the way APC clears up its old entries.
Especially with user entries, I notice the fragmentation quickly increasing to unexpected levels.
Although apc.ttl and ...
3
votes
1answer
189 views
Is PHP leaking memory in this scenario?
I am studying PHP memory management and running a few code samples.
The output of this code
class Person
{
public function sayHello($who)
{
echo "Hello, $who!", "\n";
}
}
...
0
votes
0answers
74 views
PHP Session Garbage Collection [closed]
Is there a way to set session garbage collection to run every 15 minutes instead of using a random probability based off of when people access the site?
1
vote
0answers
110 views
PHP Memcache(d) based sessions : Should garbage collection be disabled?
When using the pecl memcached (or memcache I guess..) extension, should php's session garbage collection (eg: session.gc_probability / session.gc_divisor) be disabled by setting the probability to 0?
...
0
votes
0answers
34 views
PHP COM object is shared
A client is using PHP as follows:
function getBlah($something) {
$p1 = "foo";
$p2 = "bar";
$obj = new COM("namespace.class");
$result = $obj->method($p1,$p2,$something);
unset($obj);
...
0
votes
1answer
113 views
PHP Garbage Collection Kicks in Late
I want to know exactly when the garbage collect is going to run so I made the test script below.
<?php
ini_set('session.gc_maxlifetime',10);
ini_set('session.gc_probability',1);
...
4
votes
1answer
305 views
Here's a true challenge: why does PHP call shutdown function before sessions are written?
Here's the thing. A colleague of mine is trying to overwrite the session handling of a framework that we use. This framework uses PHP's own native session handling by default, but he is now trying to ...
0
votes
2answers
905 views
why ini_set('session.gc_maxlifetime',60) doesn't work?
the default expire time of session is 1440,i want to reduce this time to 60 second,but when i use ini_set('session.gc_maxlifetime','60') in the first page it work,but it doesn't work in an other page,
...
1
vote
1answer
75 views
Running a long term session and garbage collection in PHP
What I want is to be able to save a session variable for 12 hours so user don't need to re-log in.
I'm using something like this:
if(ini_get('session.gc_maxlifetime') !== 3600*12) {
...
0
votes
3answers
54 views
PHP Array is getting Consumed
I had that weird thing using arrays in PHP.
$items = array();
$tools = json_decode($_GET['tools'],true);
foreach($tools as $key => $value)
{
$items[$somevar][$anothervar] = $value;
}
Then I ...
1
vote
2answers
168 views
PHP Variable Re-use
Before starting, I'm not asking about standard coding practice or "etiquette." My question is more from curiosity with the internals of PHP. My research so far mostly seems to find people confused ...
0
votes
3answers
513 views
PHP - gc.maxlifetime and perfomance?
I would like to know if a higher gc.maxlifetime value will affect performance of site? Let's say 2 weeks (1209600 seconds).
The reason i'm asking is because some of my pages is taking minutes to load ...
2
votes
2answers
1k views
PHP - Fatal error: Allowed memory size of 268435456 bytes exhausted
Fatal error: Allowed memory size of 268435456 bytes exhausted.
I have installed PHP 5.3 version and have added gc_collect_cycles();
where needed.
I am working with PHP simple dom library with good ...
4
votes
2answers
215 views
How does the garbage collector work in PHP
I have a PHP script that has a large array of people, it grabs their details from an external resource via SOAP, modifies the data and sends it back. Due to the size of the details I upped PHP's ...
5
votes
3answers
861 views
Memory considerations for long-running php scripts
I want to write a worker for beanstalkd in php, using a Zend Framework 2 controller. It starts via the CLI and will run forever, asking for jobs from beanstalkd like this example.
In simple ...
-4
votes
3answers
168 views
PHP Fatal Error on a native php function. Why?
(Update)
Problem was due to my php version not being the minimum version specified in the docs.
The situation:
Getting a fatal error on a native php function. (Using php version 5.2.17) Any ...
2
votes
1answer
193 views
Run script when session ends
I am looking at how I can run a script or function when a user's session ends so that I can delete temporary files which may be required.
I have searched around SO to find a solution to this problem ...
3
votes
1answer
265 views
PHP Garbage Collector statistics
I'm doing some PHP memory benchmarks and i would like to obtain the garbage collector statics.
I've followed this tutorial in the official doc: ...
1
vote
2answers
33 views
Can I detect when my class instance gets unset or garbage-collected?
I have a PHP class that, upon instantiation, creates a file that is unique to that instance of my class. In fact, the entire class is more of a wrapper around the file with various functions to ...
4
votes
1answer
71 views
Is there a way to trace garbe collector activity in PHP?
I would like to know if there is a way with PHP5.3 to trace the garbage collector activity like in Java with -verbose:gc command line.
I try to know how often and when the collections occurs.
I'm ...
1
vote
2answers
181 views
PHP: Linkedlist node objects garbage collection issue
Setting first and last node object identifier to NULL should result in instant automatic garbage collection of all node object inside a linked list because there is no reference to all node objects ...
1
vote
3answers
176 views
memory handling in php vs java [duplicate]
Possible Duplicate:
Is there garbage collection in PHP?
In java there is a concept called Garbage Collector. In java an Object becomes Eligible for Garbage Collection when it's not ...
6
votes
2answers
149 views
exessive object memory usage when not explicitly unsetting
A colleague of mine wrote a script that was exhausting the available memory. I narrowed it down to the following basic test case:
for ( $i = 0; $i <= 20; $i ++ ) {
echo memory_get_usage(). ...
0
votes
2answers
2k views
How long will a session variable last if you don't unset it?
When I store a variable in a session (in php), how long will that variable linger in that file? Will it be there until someone unsets the variable or deletes the file?
update: so it is ...
4
votes
2answers
516 views
Is the __destruct method necessary for PHP?
The manual said that
The destructor method will be called as soon as all references to a
particular object are removed or when the object is explicitly
destroyed or in any order in shutdown ...
3
votes
4answers
865 views
Disable Garbage Collection
How do I disable garbage collection for a long running php cli script? I am handling unsetting of variables in the script.
1
vote
3answers
274 views
Does PHP's garbage collection mechanism handle recursive reference issue?
In perl this will cause recursive reference :
$a = \$a;
And $a's reference count will never come to 0 again...
Does PHP has similar issue?
If not,how does PHP gc handles it?
4
votes
1answer
286 views
PHP5: SplObjectStorage garbage collection
I'm using a SplObjectStorage to keep information about managed objects. When my objects get destructed, I would like the SplObjectStorage to automatically cleanup the objects which have no external ...
7
votes
1answer
317 views
How is memory management in PHP different from that in Python?
What is the difference in how they are handled?
Specifically, why is it common to find Python used in production-level long lived applications like web-servers while PHP isn't given their similar ...
-1
votes
3answers
77 views
0
votes
3answers
647 views
How does garbage collection work in PHP? Namely, how do local function variables get cleaned up?
If I assign a value to variable that is not declared global inside a function will that variable be unset automatically when function terminates or will it only be unset when the PHP script finishes ...
0
votes
3answers
179 views
Do other programming languages/platforms problem with Garbage Collector like JVM?
i just want to know whether other programming languages/platforms like PHP, Ruby, C# etc. (where you dont have to manually deal with memory-managment) have the same prolem with GC like Java on JVM ...
3
votes
2answers
172 views
PHP garbage collector on resource?
take this simple loop
while(1) {
$data = file_get_contents('randomfiles.img');
$resource = imagecreatefromstring($data);
//> do some image operation and other stuff
//> ...
1
vote
3answers
530 views
Php garbage collection
I want to ask you, in PHP if I created a new class in a function, will the memory freed in the end of the function?
For example: Class
class config
{
var $mapProp = array("x"=>4333, ...
0
votes
2answers
4k views
php < 5.3 garbage collection, do array values need to be set null or does setting the array = null orphan all its elements?
so I am using php 5.2 and needing some garbage collection since I am dealing with very limited resources and large data sets.
from my tests I have seen that unset does nothing until the end of the ...
6
votes
2answers
2k views
What does PHP's gc_enable function do exactly?
Before you tell me to read the manual, check out the php.net documentation for this function:
Warning
This function is currently not documented; only its argument list is available.
That was ...
1
vote
4answers
7k views
destroy object in php
I am executing a program in PHP and getting the below error sometimes.Is this due to creating lot's of objects and not destroying them or any other reason?
Allowed memory size of 16777216 bytes ...
0
votes
1answer
82 views
How can I destroy a refreshed DIV that is previously loaded by a plugin in jQuery?
Explanation:
I have this in the server side:
$objec->write( "divx" );
Then in the user agent (jQuery):
<div id="divx">
<!-- SERVER: here will be the content begins -->
<script ...
9
votes
1answer
464 views
Resource garbage collected too early
I've created a PHP extension with SWIG and everything works fine, but I'm observing some strange garbage collection behavior when chaining method calls. For example, this works:
$results = ...
7
votes
3answers
1k views
PHP Garbage collection sucks or is it just me?
I have the function below which I call very frequently in a loop.
I waited 5 minutes as the memory climbed up from 1MB to 156MB. Should't PHP's garabage collector turn up and reduce this at some ...
2
votes
1answer
737 views
PHP session garbage collection becoming an annoyance, i need some help to modify this behavior
I have been having this problem for some time now, I dont exactly know that if this is the issue but I am pretty confident that it is, I have my remember me session set too expire after 1 week, but ...
1
vote
4answers
1k views
php garbage collection while script running
I have a PHP script that runs on cron that can take up to an 15 minutes to execute. At regular intervals I have it spitting out memory_get_usage() so I can see what is happening. The first time it ...


