Is the session.gc_divisor value of 1 too low for effective garbage collection?

Setting the session.gc_divisor value to 1 means that garbage collection will run on every session start, which can be inefficient and resource-intensive. It is recommended to set a higher value to reduce the frequency of garbage collection and improve performance. A value of 100 or higher is commonly used for effective garbage collection.

// Set session.gc_divisor to a higher value for more efficient garbage collection
ini_set('session.gc_divisor', 100);