R3 bindings for Node.js
github.com
R3 bindings for Node.js
1–10 of 12 posts
Re: R3 bindings for Node.js
#2Re: R3 bindings for Node.js
#3Can someone point me to the "high performance" aspect of this router? Any benchmarks or documentation supporting this?
Re: R3 bindings for Node.js
#4Can someone point me to the "high performance" aspect of this router? Any benchmarks or documentation supporting this?
————
Re: R3 bindings for Node.js
#5Can someone point me to the "high performance" aspect of this router? Any benchmarks or documentation supporting this?
There is a benchmark in the README comparing R3 to the Rails router and also to a replacement Rails router that I wrote for non-performance related reasons.
It should be noted that usually only a tiny proportion of the time taken to respond to a request is spent in route recognition. YMMV.
Re: R3 bindings for Node.js
#6Re: R3 bindings for Node.js
#7Can someone point me to the "high performance" aspect of this router? Any benchmarks or documentation supporting this?
It's a binding library of r3, you may check the benchmark from r3 project: https://github.com/c9s/r3#performance
Re: R3 bindings for Node.js
#8Can someone point me to the "high performance" aspect of this router? Any benchmarks or documentation supporting this?
Re: R3 bindings for Node.js
#9Re: R3 bindings for Node.js
#10Can someone point me to the "high performance" aspect of this router? Any benchmarks or documentation supporting this?
R3 does look fast, but there's a cost to crossing the JS -> C barrier. It's almost certainly possible to beat it using the same algorithm written in pure JS.