|
Performance Tests
The test were all done on my notebook which is a AMD K625 1.5Ghz CPU, 4Gb DDR2 Ram, WD 5400rpm HDD, Win7 Home 64bit , Windows rating of 3.9.
Javascript vs .NET compiled map functions
Most of the document databases today use the javascript language as the language to write map functions, in RaptorDB we are using compiled .net code. A simple test of the performance benefits of using compiled code is the following example from the http://www.silverlight.net/conte ... ss/run/default.html site which is a chess application, this test is certainly not comprehensive but it does show a reasonable computation intensive comparison :
As you can see even in Google Chrome (V8 javascript engine) which arguably is the fastest javascript processor currently, is beaten by the .net code (in Silverlight, full .net version could be faster still) by a factor of about 8x.
With this non scientific test it's unreasonable to use anything but compiled code for map functions. |
|