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, 3654🔥, 0💬
Popular Posts:
How to create a "Sign-up or Sign-in" user flow policy in my Azure AD B2C directory? If you want to b...
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON ...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...