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
One use case for our RFID stations is to track people who make use of a certain area or tool. In these cases we do not care if the person has any particular Skill assigned to them, only that they are an active member with a valid RFID card. This case is configured in the FDB by setting stationConfig.OKKeywords to blank.
When a station gets an RFID tap it will always call the web hook ezfGetPackagesByClientID. If the station's OKKeywords string is blank, then it does not need this data and should not ask for it.
Removing this call when not needed will reduce our Particle DO count and improve overall response time when the network is congested or the cloud is slow.
Response time is not usually an issue, but this station configuration is used by the door unlock box where response time is important. Removing this call will make the door unlock more responsive when the network is slow.
The text was updated successfully, but these errors were encountered:
One use case for our RFID stations is to track people who make use of a certain area or tool. In these cases we do not care if the person has any particular Skill assigned to them, only that they are an active member with a valid RFID card. This case is configured in the FDB by setting stationConfig.OKKeywords to blank.
When a station gets an RFID tap it will always call the web hook ezfGetPackagesByClientID. If the station's OKKeywords string is blank, then it does not need this data and should not ask for it.
Removing this call when not needed will reduce our Particle DO count and improve overall response time when the network is congested or the cloud is slow.
Response time is not usually an issue, but this station configuration is used by the door unlock box where response time is important. Removing this call will make the door unlock more responsive when the network is slow.
The text was updated successfully, but these errors were encountered: