View Single Post
  #1  
Old 25th May 2021, 19:30
szaby szaby is offline
Senior Member
 
Join Date: Jul 2008
Posts: 34
Question Updating memcache ...
Hello!

Why should this be updated?
Detail from browse.php ...

PHP Code:
    $mc1->begin_transaction('MyUser_' $CURUSER['id']);
    
$mc1->update_row(false, array('last_browse' => TIME_NOW));
    
$mc1->commit_transaction($INSTALLER09['expires']['curuser']); // bittorrent.php -> userlogin();
    
    
    
    
$mc1->begin_transaction('user' $CURUSER['id']);
    
$mc1->update_row(false, array('last_browse' => TIME_NOW));
    
$mc1->commit_transaction($INSTALLER09['expires']['user_cache']); // userdetails.php  -> main query 
Why update the second part with your own ID? The first is not enough?
Reply With Quote