colinmollenhour / php-redis-session-abstract

A Redis-backed PHP session handler with optimistic locking
Other
59 stars 47 forks source link

Allow special case lifetimes to be disabled as per Magento docs #19

Closed scottsb closed 6 years ago

scottsb commented 6 years ago

According to the Magento 2 docs, the special lifetimes (for bots and first writes) can be disabled by setting them to zero; however, that's not actually true. This PR makes it true.

See: http://devdocs.magento.com/guides/v2.1/config-guide/redis/redis-session.html

colinmollenhour commented 6 years ago

Thanks for the PR!