Weirdo
Results
2
comments of
Weirdo
Hi! I noticed that, for the REST calls, I could set the parser directly on resty since the client is exposed. So something like: ``` client := polygon.New("token") client.Client.HTTP.SetJSONMarshaler(jsoniter.Marshal) client.Client.HTTP.SetJSONUnmarshaler(jsoniter.Unmarshal)...
About the use case: a pperf analysis of our client usage showed a significant amount of time parsing json due to the size of the option chains. This implementation did...