We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As part of fixing this #6159 I looked at the bug attached JSON protocol to see why it was so big.
It has 3693 commands. Each command has two rather long string fields which constitute more than half the size of the JSON protocol:
params.pipette
params.labware
Even though the example is absurdly large, there are benefits to reducing the size of these fields: upload time, memory consumption, json parse time.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As part of fixing this #6159 I looked at the bug attached JSON protocol to see why it was so big.
It has 3693 commands. Each command has two rather long string fields which constitute more than half the size of the JSON protocol:
params.pipette
which is a UUID (36 chars)params.labware
which is a UUID concatenated with a name (100+ chars)Even though the example is absurdly large, there are benefits to reducing the size of these fields: upload time, memory consumption, json parse time.
The text was updated successfully, but these errors were encountered: