Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
148 views

Toxi mysql performance, tagging. Help understanding

I am using the Toxi scheme for tagging items on my website. Being quite new to mysql let alone tagging, I'm just doing a sanity check. Here is my table initialization script. CREATE TABLE IF NOT ...
1
vote
0answers
59 views

Any PHP tagging libraries extended for multiple object types?

I have used freetag in other applications. (And I'm satisfied with it in those applications.) But like other tag libraries I have seen, it assumes a singular object type in the tagged objects table. ...
1
vote
3answers
517 views

rel-tag bookmarklet for last path component of a URL

Many web sites support folksonomy tags. You may have heard of rel-tag, where it says that "The last path component of the URL is the text of the tag". I am looking for a bookmarklet or greasemonkey ...
1
vote
7answers
268 views

How to address semantic issues with tag-based web sites

Tag-based web sites often suffer from the delicacy of language such as synonyms, homonyms, etc. For programmers looking for information, say on Stack Overflow, concrete examples are: Subversion or ...
0
votes
0answers
14 views

Are there any sites where every user can tag every digital resource?

I am doing some research on folksonomy and I'm looking for websites like http://www.delicious.com, where users can annotate a digital resource (in this case bookmark) with tags but there is no ...
0
votes
0answers
123 views

Can a local term store be used for Enterprise Keywords

I am working on a project that would benefit from the enterprise keywords field. The keywords should not be structured in a hierarchy and should be able to be freely added by end users. The ...
0
votes
0answers
63 views

How do I restore Social Service Data/Folksonomy Data for a SharePoint 2010 site collection restore?

The whole background is that I have done a site collection restored to the new server, but the meta-data and folksonomy data haven't been restored across at all. That's why all the tag clouds are not ...
0
votes
1answer
72 views

getting popular or relevant words from input for use as tags

We all know how tagging on SO works. We make a post, tag it and it helps in searches and is used in folksonomy. this is what I want to do. Instead of forcing people to tag posts, I can somehow fetch ...
0
votes
1answer
51 views

Automatically Organize Tags in Tax/Folksonomy

I'm working on a process that will perform natural language processing (NLP) on one--and potentially several--of our content rich sites. What I'd like to do once the NLP is complete is to ...
0
votes
4answers
99 views

Search in Folksonomies. How to tackle synonymy problem?

Can someone shed some light on how searching is done on web-sites like del.icio.us? If I enter "js"(1), "javascript"(2) or "java script"(3) as my query on delicious, I'm pointed to resources about ...
0
votes
1answer
162 views

PHP - folksonomy tag checking regex

I'm trying to create a regex for checking values of submitted tags for a free form folksonomy system. Here is what I have now. if (!preg_match('/([^-\\a-zA-Z0-9._@\'])+/',$proposedtag)) { ...