Improve performance for unset values and add performance checker example #110
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
What does this Pull Request accomplish?
I discovered a performance problem when using panel.get_value(value_id, default). If the value_id was not found on the server, the server was throwing an RPC exception to indicate the failure. The client would then catch that exception and return the default value. But throwing an exception across the gRPC channel is quite resource-intensive. It's fine for actually exceptional circumstances, but severely slows things down if the measurement script is using panel.get_value() in a tight loop.
It's easy to imagine users writing scripts that rely on default values, especially during development, so I think this needs to be performant.
The server-side changes can be seen here.
On the client side here, we now use
if response.HasField("value"):to check if the server returned a value to us.Why should this Pull Request be merged?
This is a significant performance improvement.
What testing has been done?
I added a performance checking example, which includes measuring the time it takes for get_value() to handle an unset value: