in reply to what is the best session module to use?

We use Apache::MySql::Session and have used it for years, however, we have so many members it does appear to use more server resources.

Apache::MySql::Session? This probably has more to do with how you're using Apache::MySql::Session, than anything Apache::MySql::Session does. Maybe you want to index your session table?

  • Comment on Re: what is the best session module to use?

Replies are listed 'Best First'.
Re^2: what is the best session module to use?
by Anonymous Monk on Nov 03, 2009 at 12:50 UTC
    table only has 3 fields:

    t which is the timestamp field,
    id which is the primary key so already part of the index
    and a_session which is a text field so cannot add an index, I did just add a 'fulltext' index so we'll see if that helps. Anyhow, if you or anyone else knows of a better session control system please let me know what you recommend.

    thanks,
    Richard