0.15.13 #655
endel
announced in
Release notes
0.15.13
#655
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Major changes
Stats
module, responsible for handling theroomcount
key on Redis.roomcount
hash key on Redis now holds its values separated by comma (processId
->"count,ccu"
)Stats
module is exposed viamatchMaker.stats
, so end-user can call:matchMaker.stats.fetchAll()
->Promise<Array<{ roomCount: number; ccu: number; processId: string }>>
matchMaker.stats.getGlobalCCU()
->Promise<number>
selectProcessIdToCreateRoom
callback option toServer
constructor.The default value for
selectProcessIdToCreateRoom
behaves exactly as previous versions, but now it consumes the newmatchMaker.stats.fetchAll()
API:Breaking changes
roomcount
Redis key format has changed._ccu
Redis key does not exist anymore (UsematchMaker.stats.getGlobalCCU()
instead)Smaller changes
It has been reported (by @CookedApps) that reconnection messages were flooding production logs. These logs are now filtered out on production environment.
Thanks @hunkydoryrepair and @CookedApps
This discussion was created from the release 0.15.13.
Beta Was this translation helpful? Give feedback.
All reactions