Hi,
I have to count a lot of words. Up to now i did it with MySQL, because it
was easy. The result is safed there anyway. Now i thought i could speed up
this a little if i would use internally a Multi_index list to store the
words, so i have only to insert all different words. The words are stored
in a UnicodeString from the ICU library.
My code is really near to the one from the example "sequenced.cpp".
Im using the following definition:
typedef multi_index_container<
UnicodeString,
indexed_by<
sequenced<>,
ordered_non_unique
text_container;
typedef nth_index