i want to build a parser, which parses multiple pages of an xml document. these pages include images and other media, which are served by an extra static asset server. now my question is:
should i use rails to parse the document or make a special node server, which does that? i thought about node because of the performance.
the parser creates a html document out of the xml file.
thanks in advance!
edit: these html pages get viewed from multiple users.
I don’t think it makes much of a difference if you can parse 100k pages per second with ruby or 200k pages per second with node.js unless you’re parsing billions of xml documents (I made those numbers up). You should use the tools you’re most familiar with.
However, there are some cool libaries for web scraping/parsing in node.js