-
-
Notifications
You must be signed in to change notification settings - Fork 174
Open
Labels
Description
I use steam-user for 500 accounts, and I notice that every second when calling functions, my server memory gets filled up to 100% for 12 hours.
LocalData.client = new SteamUser({
enablePicsCache: false,
renewRefreshTokens: true,
httpProxy: proxy,
proxy
});
LocalData.client.logOn({
refreshToken: LocalData.refreshToken
});
LocalData.client.on('playingState', (blocked, app) => {
if(blocked) return;
LocalData.client.gamesPlayed(games);
});