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, ∼4719🔥, 0💬
Popular Posts:
How To Access a Global Variable inside a Function? in PHP? By default, global variables are not acce...
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...
How to make application release build with Visual Studio 2017? If you want to make a final release b...
What is the Azure AD v1.0 OpenID Metadata Document? Azure AD v1.0 OpenID Metadata Document is an onl...