[MIT-Scheme-devel] Efficient reading from a network socket

2012-05-01 Thread Matt Birkholz
> From: > Date: Tue, 01 May 2012 11:03:23 +0200 > > Hello fellow Schemers! > > Another question, what is an efficient way to read from a network (or > unix domain) socket? After reading the manual, I'd guess READ-SUBSTRING! > with an aptly allocated string and then using VECTOR-8B-REF etc. to >

[MIT-Scheme-devel] Efficient reading from a network socket

2012-05-01 Thread craven
Hello fellow Schemers! Another question, what is an efficient way to read from a network (or unix domain) socket? After reading the manual, I'd guess READ-SUBSTRING! with an aptly allocated string and then using VECTOR-8B-REF etc. to access the actual values. Is this correct? Is there any further