Tools, FAQ, Tutorials:
Setting session.gc_divisor Properly in PHP
How To Set session.gc_divisor Properly in PHP?
✍: FYIcenter.com
As you know that session.gc_divisor is the frequency of when the session garbage collection process will be executed. You should set this value based on the income request traffic. Here are some suggestions:
# Set it to 10, if traffic is less than 10,000 per day: session.gc_divisor = 10 # Set it to 100, if traffic is between 10,000 and 100,000 per day: session.gc_divisor = 100 # Set it to 1000, if traffic is greater than 100,000 per day: session.gc_divisor = 1000
⇒ Removing Values Saved in the Session in PHP
⇐ Setting session.gc_maxlifetime Properly in PHP
2016-10-24, ∼4848🔥, 0💬
Popular Posts:
Where to find tutorials on RSS specifications? I want to learn it to describe my API services. Here ...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...
How To Copy Array Values to a List of Variables in PHP? If you want copy all values of an array to a...
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...
How to build a test service operation to dump everything from the "context.Request" object in the re...