John Lane Schultz
John Lane Schultz
I recently ran into a similar issue where internal customers wanted to use reserved characters inside their stream ids, which need to be percent encoded to pass as a url...
I looked at your unit test that failed. Your test and/or the thing it is testing is likely flaky because the code I changed should have absolutely zero impact on...
> As I understand, the value part of say `streamid=my%20stream` is expected to be interpreted as `my stream`, right? Right. If the streamid's value contains characters that have to be...
> I think this version looks better: Using an ostringstream and going character by character is probably better than doing searches, substr's, and string self additions. I considered doing that...
I have a similar issue. I want multiple threads to be able to parse SQL. The SQL language is effectively static so there should be no good reason to rebuild...
@klahnakoski Thank you. I am aware that Python has green threads / GIL limiting execution to a single core within a Python process. Regardless, concurrency would still allow lower latency...