chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Chicken-users] performance issue in xml-rpc


From: Daishi Kato
Subject: [Chicken-users] performance issue in xml-rpc
Date: Tue, 5 Dec 2006 22:39:31 +0900

Hi again,

Now, it's about a non-fatal performance issue.
I made the following simple (empty) example,
and tried a sample script that basically calls the RPCs several times.
I found that it takes about 40ms for each request on my machine
(Pentium4 3.2GHz),
which seems relatively slow compared to other results.
(Looks like it's less than 5ms with Apache XML-RPC.)

What do you think is the bottleneck? or is there any way to find it?
and how would you fix it?

Thanks,
Daishi

(require-extension xml-rpc-server)

(define (put arg1 arg2 arg3 arg4)
 0)

(define (get arg1 arg2 arg3 arg4)
 (vector
  (list->vector '())
  (byte-vector)))

(xml-rpc:register-method "put" put)
(xml-rpc:register-method "get" get)

((http:make-server 60234))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]