Gmail-like labelling system
Posted
by
Dimitris
on Stack Overflow
See other posts from Stack Overflow
or by Dimitris
Published on 2011-02-01T15:20:23Z
Indexed on
2011/02/01
15:25 UTC
Read the original article
Hit count: 350
c#
|design-patterns
Hi
I am looking into a number of ways to implement a labelling system similar to the one in Gmail. Basically I have a Resource at the lowest level and I would like to provide a number of organisational groupings for that resource in the form of labels. If anyone has implemented something like that I would like to hear your views. My idea is to have within the Resource instance a List<Label>
. I need to have an efficient mechanism in order to do very fast searches based on the labels or based on the resources.
Thanks Dimitris
© Stack Overflow or respective owner