Questions tagged [tagging]

Tagging is the act of adding tags (non-hierarchical keywords or terms assigned to a piece of information such as an Internet bookmark, digital image, or computer file).

Tagging is the act of adding tags (non-hierarchical keywords or terms assigned to a piece of information such as an Internet bookmark, digital image, or computer file).

Tagging is carried out to perform functions such as aiding in classification, marking ownership, noting boundaries, and indicating online identity. It may take the form of words, images, or other identifying marks.

920 questions
7
votes
1 answer

What benefit does Django-Taggit provide over a simple ManyToManyField() implementation of tagging?

The API according to the documentation seems achievable with a simple ManyToManyField...what am I missing? Sample from Django-Taggit documentation: class Food(models.Model): # ... fields here tags = TaggableManager() Then you can use the…
kliao
  • 549
  • 1
  • 6
  • 14
7
votes
7 answers

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 owner. If I use f.text_field :all_tags_list it…
Thomas Traum
  • 277
  • 5
  • 14
7
votes
3 answers

How can I cluster short messages [Tweets] based on topic ? [Topic Based Clustering]

I am planning an application which will make clusters of short messages/tweets based on topics. The number of topics will be limited like Sports [ NBA, NFL, Cricket, Soccer ], Entertainment [ movies, music ] and so on... I can think of two…
Jagira
  • 1,368
  • 2
  • 14
  • 29
7
votes
3 answers

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 to partition the data into multiple shards soon…
Morgan Cheng
  • 73,950
  • 66
  • 171
  • 230
7
votes
4 answers

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 right sidebar of stackoverflow c# × 59279 sql ×…
Luke101
  • 63,072
  • 85
  • 231
  • 359
7
votes
1 answer

Push to GitLab repository within CI server (deploy keys)

GitLab has this nice 'deploy keys' feature useful for CI servers to have read and pull access to a repository as they usual don't need more than that. However, I need to create and push a tag to the repository to tag each release that is built from…
rfgamaral
  • 16,546
  • 57
  • 163
  • 275
6
votes
0 answers

Looking for a GUI tagging component like OSX Cocoa's NSTokenField for .NET/Ruby/Java

I'm looking for an text input box for tagging, with autocomplete and hightlighting, kinda like how Delicious.com's old tagging input box. See the "Tags" input box in the screenshot. I know Cocoa has a native GUI component like like this called…
goofrider
  • 231
  • 1
  • 8
6
votes
4 answers

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 Gem? Or a simple trick with nested documents?
berkes
  • 26,996
  • 27
  • 115
  • 206
6
votes
1 answer

Database design for tags or tagging

How are tags of an item stored in a database hassle-free? Each item has multiple tags with it. I have read a few answers on an efficient way to do so : What is the most efficient way to store tags in a database? Recommended SQL database design for…
Shivansh Jagga
  • 1,541
  • 1
  • 15
  • 24
6
votes
1 answer

Maven release setup with svn tags per module

Goal Multimodule maven release with tags per module Situation Assume the following project structure for a Maven-based Java project: xx-parent xx-moduleA xx-moduleB xx-moduleC/submodule1 xx-moduleC/submodule2 xx-moduleC/submodule3 The project…
mhaller
  • 14,122
  • 1
  • 42
  • 61
6
votes
2 answers

How to impliment a Part-of-Speech (POS) tagger

I'm looking for the best PHP-based way to scan a lot of text entries (classifieds) and pull out keywords - anyone know about Part-of-Speech tagging? Is there a PHP-ish way to do this? I scan a lot of online classifieds - but none with categories! To…
Jamison
  • 2,218
  • 4
  • 27
  • 31
6
votes
3 answers

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 page like this…
Zamblek
  • 789
  • 1
  • 12
  • 21
6
votes
5 answers

Need an automatic image tagging API, any suggestions?

I'm building an application which needs to take an image and infer tags related to it. Those tags can be about things, adjectives or even emotions related to the picture. I've already found ALIPR. But I tested it, some other people tested it also…
fjsj
  • 10,995
  • 11
  • 41
  • 57
6
votes
2 answers

Maven Release Plugin and Git Tagging Style

Does the Maven Release Plugin perform lightweight or annotated tags in Git? (Also, does it support annotated tags if it is defaulting to lightweight tags?) For instance, I can tag a project by hand using either: git tag v1.0.0 # lightweight or,…
ingyhere
  • 11,818
  • 3
  • 38
  • 52
6
votes
3 answers

Whats the best way to implement a simple document management system?

I am planning to build a simple document management system. Preferably built around the java platform. Are there are best practices around this? The requirements are : Ability to upload documents Ability to Tag documents Version the…
Ritesh M Nayak
  • 8,001
  • 14
  • 49
  • 78