Cache_UnlinkLRU: NULL link
The CS crashed when someone change to the primary, Cache_UnlinkLRU: NULL link. What causes that?
PHP Code:
PHP Code:
|
Re: Cache_UnlinkLRU: NULL link
bump
|
Re: Cache_UnlinkLRU: NULL link
Your get_players usage is not correct.
Suppose there are 5 players. You use indexes 1 2 3 4 5, but connected players could have indexes 2 5 10 15 16 In that case, players array would contain : players[0] -> 2 players[1] -> 5 players[2] -> 10 players[3] -> 15 players[4] -> 16 So to retrieve player index in the loop, you have to do players[i] Also, a good habit is to cache such values when you need it more than once So instead of doing : PHP Code:
PHP Code:
So correct code is : Code:
|
Re: Cache_UnlinkLRU: NULL link
It didn't retrieve correctly, I tried to give:
PHP Code:
44 45 so the actual entity id is 44 but set to 45. So I must make the entity id to 44 by using: PHP Code:
|
Re: Cache_UnlinkLRU: NULL link
Are you kidding me ?
|
| All times are GMT -4. The time now is 19:14. |
Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.