-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
10 MByte socket problem #45
Comments
The low-level read call for a socket within Gemstone has a maximum buffer size of 10 MByte - if you get a request, which is larger than this size the system will not return the whole data. Actually Zinc must somehow try to read again from the socket until no more bytes are ready to read. We ran into this problem, because we uploaded a csv file. which is larger than 10 Mbyte. |
Will need to address this puppy separately from current work being done on issue_58 branch |
This GemStone internal limit for the GsSocket>>read:into:startingAt: call will be bumped to several hundred MB in 3.2.16/3.3.1. Covered by GemStone Bug 46224... |
…ne 3.3.1+ and/or 3.2.16+ (excluding 3.3.0)
Added a test case to ZnMimeType covering hash calculation for mime ty…
Marten reports:
10 MByte Socket problem - this is a limitation within Gemstone and the
reading service method within Zinc should consider this ...
The text was updated successfully, but these errors were encountered: