Re: Tclkit vs Tclkit Lite VFS performance
Jean-Claude Wippler <[email protected]>
| Newsgroups | gmane.comp.lang.tcl.starkit |
|---|---|
| Message-ID | <[email protected]> |
Pat Thoyts wrote:
> Quickly following up my own post -- I noticed I used tclkitsh85a4 so I
> re-ran with 85a6 and lost the stacktrace. Still bad timing though.
[...]
> tclkit stat : 169.696
> lite stat : 3802.087
Awful.
> tclkit read : 335.91
> lite read : 3878.43
> tclkit read-large : 4264.76
> lite read-large : 8575.66
Encodings? One thing that changed from 8.4 to 8.5 is that I threw
out "pwb". See files/boot.tcl:
if {[info tclversion] eq "8.4"} {
load {} pwb
librarypath [info library]
} else {
encoding dirs [list [file join [info library] encoding]] ;#
TIP 258
}
(Note also Rene Zaumsell's encodings problem - should be fixed now)
-jcw