Current state
- .NET 4.0 Application (WPF)
- Database: SQLCE
- Tables (simplified): Documents, Tags, DocumentsTags [n:n]
- roughly 2000 documents and 600 tags (tags can be assigned to multiple documents)
- tags = keywords = labels
Case
The user has a big document database, which he can filter with a tag cloud. The tags displays a name (the tag name itself) and a number, which is the total count of the documents with the respective tag. If the user selects a tag, only the documents with the selected tag are shown. The dynamic tag cloud now should show only the available tags on the filtered documents with an updated count number.
Problem
It is slow. After each selected tag, we need to evaluate again all the documents to count the tags. We currently do it recursively, so we check on each document what tags it has. We are looking for another solution (caching, better algorithm, your idea?).
Similarities
stackoverflow, del.icio.us also have tag clouds. Check out yourself. How do they do it? I know stored procedures would be a solution, but according our database developer this is not available on SQLCE.