You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.cache.roomMember.set(roomId, {
... cachedPayload,
memberId: payload,
})
Should be changed to
this.cache.roomMember.set(roomId, {
... cachedPayload,
[memberId] : payload,
})
This makes use of the cache and optimizes the query speed
The text was updated successfully, but these errors were encountered:
@huan
In my opinion
this.cache.roomMember.set(roomId, {
... cachedPayload,
memberId: payload,
})
Should be changed to
this.cache.roomMember.set(roomId, {
... cachedPayload,
[memberId] : payload,
})
This makes use of the cache and optimizes the query speed
The text was updated successfully, but these errors were encountered: