redis PHP session support doesn't lock the session
The standard php session handler "locks" the php session. This prevents race conditions resulting from allowing concurrent requests to modify the session. Have you considered building this same locking mechanism into the phpredis extension? The memcache extension in php does session locking (as of version 3.0.4) and might be a place to look at for insipration.
Thanks,
~Jeff