File uploads to web server are too slow - MIME BoundedReadStream>>next is the culprit

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

File uploads to web server are too slow - MIME BoundedReadStream>>next is the culprit

Terry Raymond
HTTP file uploads are too slow. The culprit is BoundedReadStream>>next.
If you notice you will see it implements a FIFO by moving the
elements of an collection instead of managing pointers.

The attached fileIn provides a times 2 speed improvement.

Terry
 
===========================================================
Terry Raymond
Crafted Smalltalk
80 Lazywood Ln.
Tiverton, RI  02878
(401) 624-4517      [hidden email]
<http://www.craftedsmalltalk.com>
===========================================================

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc

BoundedReadStream.st (3K) Download Attachment