Relative Content

Tag Archive for c++multithreadingqtparsingsgml

In Qt/C++, I am building a dual threaded sgml tokenizer that threads backwards and forwards. Why is it taking twice as long instead of half?

Backstory: Third time building a sgml parser: QRegularExpression – Flexible & Unreliable. QString – Slow & Reliable. QStringView + Multithreading – Fast & Clean Multithreading Strategy: Assume every index can represent one token. Store tokens by that index Tokens can be checked for by simply checking if its index integer is present Avoid Overhead & […]