Browse thread
Correct way of programming a CGI script
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | skaller <skaller@u...> |
| Subject: | Re: [Caml-list] Correct way of programming a CGI script |
On Tue, 2007-10-09 at 12:26 +0200, Gerd Stolpmann wrote: > Am Dienstag, den 09.10.2007, 07:37 +1000 schrieb skaller: > But we have to be fair. It is simply nonsense to call the whole O'Caml > string manipulation slow. You have access to all operations you need to > do it fast. You just have to know how to code it. No you don't, that's the point. There is no fast way to append using string. You can use Buffer, but then you can't do (for example) search. You can convert back and forth, and then you pay an extra conversion cost. C++ strings provide all the operations of both String and Buffer and do not pay this cost. -- John Skaller <skaller at users dot sf dot net> Felix, successor to C++: http://felix.sf.net