Jump to content

[Memcache] Login question


QuietWhistler

Recommended Posts

Hello everyone,

I have a couple of questions about Memcache. What I want to do is using memcache for user login, so when a user logs in, a memcache variable (array) is created. Here's the function:

[code]function login( $sUsername, $sPassword )
{
    $oMemcache = clsMem::getMem();
    if( $oMemcache->get( md5( $sUsername ) ) == "" )
    {
        $oSql = new Mysql();
        $oSql->query( "SELECT id, username, permissions FROM users WHERE username = '" . $sUsername . "' AND password = '" . md5( $sPassword ) . "'" );
        if( $oSql->fetchNumRows() == 1 )
        {
            $aUserInfo = $oSql->fetchArray( MYSQL_ASSOC );
            $oMemcache->set( md5( $sUsername ), $aUserInfo, false, 0 );
            session_start();
            $_SESSION[ "username" ] = md5( $sUsername );
        }
    }
}[/code]

Now my questions;

1. Is Memcache safe enough to use it for user login?
2. Is this faster than getting information from the database directly?
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.