Post
Topic
Board Project Development
Re: [ANN] TxBits - an open-source Bitcoin exchange - developers and testers wanted
by
ianj
on 15/10/2017, 13:29:03 UTC
I don't see any trading engine or even an outline, I hope you are not using scala for the trading engine, that should be written in C or C++ to be anything considered commercial grade.

You have no idea what you are on about if you think you NEED C++ for an exchange trading engine

A good Java/Scala programmer can produce something 10 faster than a poor C++ solution

At BEST you can expect a C++ solution to be 30% faster than a Java design from the same person (that is only because you have more influence on pipelining in C++), only the Java version can be developed 2-5x faster

Any highly optimal design will be SEVERAL ORDERS OF MAGNITUDE faster than SQL using modern techniques

But you are right in that using integer values can be significantly faster than float/double (which also have serious precision problems) and far far more efficient than BigDecimal

But its easy for us to heckle from the sidelines - well done on producing something Smiley