in reply to Re: Re: Problem using apache::session::store::mysql
in thread Problem using apache::session::store::mysql
You are missing something about the core structure of Apache::Session. It's a toolkit of storage, locking, and ID generation modules. The Apache::Session::MySQL module is just a pre-set configuration of those. It's little more than a config file. Look at the source and you'll see what I mean.
If you want to choose a specific ID generation algorithm, you can't use Apache::Session::MySQL because it already has one selected. You have to use Apache::Session::Flex instead. However, the MD5 ID generator which you are trying to use is already the default for Apache::Session::MySQL, so you don't need to do anything.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Problem using apache::session::store::mysql
by Anonymous Monk on May 25, 2004 at 17:41 UTC |