ralfstx / minimal-json

A fast and small JSON parser and writer for Java
MIT License
732 stars 186 forks source link

Timeout Period? #96

Closed drewlane closed 6 years ago

drewlane commented 6 years ago

The web service I'm using is very slow and can often takes 30 seconds. The parser seems to be timing out before then. Can I increase the timeout?

bernardosulzbach commented 6 years ago

I don't think that this project should even be measuring parsing time. This is a network problem and should be treated as one. Just start a thread for parsing the input stream and time it out if it takes too long.

ralfstx commented 6 years ago

Right, the parser does not have any timeout. It must be another component in your system that times out.