Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

82
votes
5answers
8k views

How do you recommend implementing tags or tagging

I've heard of a few ways to implement tagging; using a mapping table between TagID and ItemID (makes sense to me, but does it scale?), adding a fixed number of possible TagID columns to ItemID (seems ...
56
votes
12answers
9k views

Database Design for Tagging

How would you design a database to support the following tagging features: items can have a large number of tags searches for all items that are tagged with a given set of tags must be quick (the ...
47
votes
10answers
3k views

What is the best way to compute trending topics or tags?

Many sites offer some statistics like "The hottest topics in the last 24h". For example, Topix.com shows this in its section "News Trends". There, you can see the topics which have the fastest growing ...
20
votes
4answers
6k views

Union and Intersect in Django

class Tag(models.Model): name = models.CharField(maxlength=100) class Blog(models.Model): name = models.CharField(maxlength=100) tags = models.ManyToManyField(Tag) Simple models just to ask ...
15
votes
3answers
4k views

Remove local tags that are no longer on the remote repository

We use tags in git as part of our deployment process. From time to time, we want to clean up these tags by removing them from our remote repository. This is pretty straightforward. One user deletes ...
15
votes
7answers
5k views

What is the most efficient way to store tags in a database?

I am implementing a tagging system on my website similar to one stackoverflow uses, my question is - what is the most effective way to store tags so that they may be searched and filtered? My idea is ...
14
votes
7answers
1k views

Is there an agreed ideal schema for tagging

I have a photo website and i want to support tags as my original category bucketing is starting to fail (some pictures are family and vacations, or school and friends). Is there an agreed tagging db ...
13
votes
3answers
13k views

Facial recognition/detection PHP or software for photo and video galleries

I have a very large photo gallery with thousands of similar people, objects, locations, things. The majority of the people in the photos have their own user accounts and avatar photos to match. There ...
13
votes
3answers
1k views

Tag hierarchies and handling of

This is a real issue that applies on tagging items in general (and yes, this applies to StackOverflow too, and no, it is not a question about StackOverflow). The whole tagging issue helps cluster ...
11
votes
3answers
2k views

An easy way to support tags in a jekyll blog

I am using the standard jekyll installation to maintain a blog, everything is going fine. Except I would really to tag my posts. I can tag a post by using the YAML front matter, but how do I ...
10
votes
2answers
2k views

How to add tagging with autocomplete to an existing model in Rails?

I'm trying to add "tags" to an Article model in a Rails 3 application. I'm wondering if there is a gem or plugin that has adds both the "tagging" functionality in the model and also the auto-complete ...
10
votes
5answers
2k views

How to implement tag system

i was wondering what the best way is to implement a tag system, like the one used in SO. I was thinking of this but i can't come up with a good scalable solution. The things i was thinking was is the ...
8
votes
1answer
48 views

How to find all the tags of each page and then concat the tags into one column?

How can I find all the tags of each page and then concat the tags into one column? For an example, pages table, page_id 1 2 3 4 tags table, tag_id tag_name 1 A 2 B 3 ...
8
votes
3answers
304 views

How to design data storage for partitioned tagging system?

How to design data storage for huge tagging system (like digg or delicious)? There is already discussion about it, but it is about centralized database. Since the data is supposed to grow, we'll need ...
8
votes
1answer
3k views

Rails tagging and tag list

I saw alot of good tagging plugins but are these plugins really what I want? I want to: - Tag products, users and news - Search by tags - List all tags like SELECT DISTINCT tag (for a autocomplete ...
7
votes
2answers
532 views

Getting rails tagging plugins to work makes me Hulk-angry

I spent all my time yesterday trying to get ANY Rails tagging plugin to work. While installation was straightforward, I have to say the amount of documentation on how to use any of these plugins was ...
7
votes
13answers
8k views

CVS/SVN best practices for branching and tagging

i'm going to be responsible for deciding how tagging branching is going to happen in our CVS/SVN repo. Is there any literature that will help me understand the best way to work with CVS? either ...
7
votes
4answers
188 views

Are there any papers or research results concerning the way people use tags and keywords?

I'm working on a tagging system at work, but one thing that I would be interested in is determining what has already been learned about the way people use such systems so that, when using libraries ...
6
votes
1answer
147 views

What is the easiest way to replicate the tags textbox that is used in the stackoverflow questions page

i am building a asp.net-mvc website and i want to support tagging on each page. I want to exactly replicate the inteface and UI that is used on stackoverflow (include both behavior and layout, css). ...
6
votes
2answers
2k views

How do i implement tag searching? with lucene?

I havent used lucene. Last time i ask (many months ago, maybe a year) people suggested lucene. If i shouldnt use lucene what should i use? As am example say there are items tagged like this apples ...
6
votes
3answers
2k views

Efficient implementation of faceted search in relational databases

I am trying to implement a Faceted search or tagging with multiple-tag filtering. In the faceted navigation, only not-empty categories are displayed and the number of items in the category that are ...
6
votes
4answers
2k views

LSA - Latent Semantic Analysis - How to code it in PHP?

I would like to implement Latent Semantic Analysis (LSA) in PHP in order to find out topics/tags for texts. Here is what I think I have to do. Is this correct? How can I code it in PHP? How do I ...
6
votes
2answers
819 views

What's the best way to search GitHub?

The search feature on the site seems pretty awful. Are there any external sites that do a better job of categorizing projects with tags, etc? Or maybe I'm just not using GitHub correctly?
5
votes
1answer
49 views

Mercurial, how to tag old version of files

I forgot to tag and older version of my files with a release tag. The older version is at r13, latest is about r65. I cloned the latest repository to a new directory, did an "hg update -r13" to get ...
5
votes
1answer
65 views

What are the common usages of tagging something else than a commit?

Git-tag documentation states that a tag should target a commit. So does the git book. However, the tests show that one tag can as well target a tree, a blob or even another tag. Have you ever ...
5
votes
1answer
2k views

Tagging friends in Facebook Videos for an iPhone app

I am developing an iPhone application that allows uploading videos to Facebook. I would like to allow the user to Tag his/her friends in the video uploaded. How can I achieve this programmatically? I ...
5
votes
1answer
1k views

SVN: Problems with tag creation in Eclipse with Subversive

I'm trying to create to create a tag in svn repo for my project. I use Eclipse and Subversive plugin. Every time I try tagging, I get the following error: Tag operation for some of selected ...
5
votes
4answers
507 views

How to implement tag counting

I have my tags desinged like this in my database: Table: Item Columns: ItemID, Title, Content Table: Tag Columns: TagID, Title Table: ItemTag Columns: ItemID, TagID //example -- this is the ...
5
votes
3answers
290 views

Any distributed cache systems that allows for tagging content?

I'd like to know if there is any distributed cache systems like memcached, velocity or sharedcache that allows me to tag content with more than just it's name, or that can relate items to eachother, ...
4
votes
1answer
144 views

Some NLP stuff to do with grammar, tagging, stemming, and word sense disambiguation in Python

Background (TLDR; provided for the sake of completion) Seeking advice on an optimal solution to an odd requirement. I'm a (literature) student in my fourth year of college with only my own guidance ...
4
votes
2answers
191 views

Project Organization using Maven + Git

Our team is currently in the process of moving from SVN to Git. We currently use Maven as our build tool. Currently our projects have a build hierarchy through Maven, but are flat on the file ...
4
votes
1answer
314 views

How to create a tagging system like on Stack Overflow or Quora

I want to create a tagging system like seen here on Stack Overflow or on Quora. It'll be its own model, and I'm planning on using this autocomplete plugin to help users find tags. I have a couple of ...
4
votes
2answers
473 views

Implementing twitter-like hashtag on rails

I'm want to implement twitter-like hashtag on my app. Let's say I have user input to a text area "I'm coming to #london from #paris" then I want to build tag cloud of the hashtags. I'm thinking of ...
4
votes
1answer
183 views

How can I make this tagging system sortable?

I found this jQuery tagging system mentioned on SO: http://webspirited.com/tagit/?page=tagit and I really like it but I need to be able to drag and drop the tags to sort them. Your help would be ...
4
votes
1answer
265 views

Stack Overflow style tagging system in jquery

I am wondering if there is a prebuilt clone (or very similar) to the Stack Overflow tagging system. I have done some Googling however cannot find any powered by jquery.
4
votes
2answers
459 views

How-to build tagging system like stackoverflow

I'm implementing a tag system similar to StackOverflow tag system but I just wonder How-to get related tags and define the relationships weights between tags like the list of "Related Tags" in any tag ...
4
votes
3answers
405 views

Update owner tags via form

I would like to uniquely use owner tags in my app. My problem is that when I create / update a post via a form I only have f.text_field :tag_list which only updates the tags for the post but has no ...
4
votes
1answer
127 views

How effective can this Tagging solution be?

Im working on an image sharing site and want to implement tagging for the images. I've read Questions #20856 and #2504150 I have few concerns with the approach on the questions above. First of all ...
4
votes
5answers
3k views

SVN layout — best practice

In CVS we have on project with multiple directories in there. There is a nightly build that has to pull in stuff from different directory in the same CVS project in order to build the nightly build. ...
4
votes
4answers
213 views

What kinds of things can be done to improve the tagging functionality on a website?

I have rough ideas - like dealing with singular/plural, two or more words/phrases that mean the same thing, misspellings, etc. But I'm not sure of any patterns or rules of thumb for dealing with ...
4
votes
4answers
1k views

How to build “Tagging” support using CouchDB?

I'm using the following view function to iterate over all items in the database (in order to find a tag), but I think the performance is very poor if the dataset is large. Any other approach? def ...
3
votes
3answers
69 views

MySQL: tagging system

Assume I have a table that can have 0 or more tags: TABLE: foo - foo_id (PK) TABLE: tag - tag_id (PK) - name TABLE: foo_tag - foo_tag_id (PK) - foo_id (FK) - tag_id (FK) Questions: The above is ...
3
votes
3answers
68 views

GROUP a result BY a specific keyword in MySQL?

I have a page tagged with multiple tags with the keyword I am searching and sometimes it is not tagged with that keyword, so when it has that tags, it will return a result like this below, query, ...
3
votes
1answer
123 views

Rails tagging gem that supports tagging a model with other models?

Most Rails tagging gems support tagging an object with arbitrary strings. (In addition to this) I'd like to tag an object with other objects. Imagine I am building a Q&A site for Dog Lovers: I ...
3
votes
2answers
145 views

How can I write a LINQ to SQL query to update tags?

I have an image site where users can tag photos much like you can tag a question on Stackoverflow. I have the following tables: Images [ID, URL, etc] Tags [ID, TagName] ImageTag [TagID, ...
3
votes
2answers
218 views

facebook photo tagging

how to show thumbnail view of tagged friends of user in a photo as the most applications like 'top-friends' are doing.I've used graph api but it only shows name of tagged friends.
3
votes
2answers
148 views

Tagging and Analysing a Search Query

I'm developing a search engine which functions taking the semantics of data into account, unlike the usual keyword based index. I managed to develop a reasonable index for the search using metadata ...
3
votes
1answer
306 views

Good solution for tagging in Rails with MongoID

What are good solutions for tagging in Rails with MongoID? It seems that it is really simple to just add a hash or array to a document, but I am not sure if that is the best approach. Maybe some ...
3
votes
1answer
114 views

Auto VCS tagging on Teamcity build - Limitations?

There have been concerns that automatically tagging builds with build systems (TeamCity/CruiseControl) will create so many tags that Perforce will be bogged down. The only references I've managed to ...
3
votes
2answers
159 views

Document Analysis and Tagging

Let's say I have a bunch of essays (thousands) that I want to tag, categorize, etc. Ideally, I'd like to train something by manually categorizing/tagging a few hundred, and then let the thing loose. ...

1 2 3 4 5 7