Reputation: 4132
Dear fellow go enthusiasts,
I would need xslt support in a go program. As far as I know there will be no xslt library in the the near future and currently there is no binding to a xslt library in go.
What is the FASTEST library on linux or cross platform to do 1) xslt 1.0 transformation 2) xslt 2.0 transformation
Upvotes: 3
Views: 1710
Reputation: 243459
I hope the following could be used in a GO program:
XSLT 1.0 on Linux:
I don't know which one is faster -- one shouldn't make a bold conclusion based just on the fact that one is Java based and the other is C-based.
XSLT 2.0 on Linux:
Even if there is another XSLT processor working on Linux, in my experience Saxon 9.x is factors of magnitude faster than any other existing XSLT 2.0 processor. It is also one of the most compliant.
Upvotes: 1