Database Schema for Machine Tags? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T18:58:32Z http://stackoverflow.com/feeds/question/513493 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/513493/database-schema-for-machine-tags 0 Database Schema for Machine Tags? Gabriel 2009-02-04T21:40:34Z 2009-10-26T01:00:01Z <p>Machine tags are more precise tags: <a href="http://www.flickr.com/groups/api/discuss/72157594497877875" rel="nofollow">http://www.flickr.com/groups/api/discuss/72157594497877875</a>. They allow a user to basically tag anything as an object in the format object:property=value</p> <p>Any tips on a rdbms schema that implements this? Just wondering if anyone has already dabbled with this. I imagine the schema is quite similar to implementing rdf triples in a rdbms</p> http://stackoverflow.com/questions/513493/database-schema-for-machine-tags/513651#513651 0 Answer by Mat for Database Schema for Machine Tags? Mat 2009-02-04T22:21:05Z 2009-02-04T22:21:05Z <p>Unless you start trying to get into some optimisation, you'll end up with a table with Object, Property and Value columns Each record representing a single triple.</p> <p>Anything more complicated, I'd suggested looking the documentation for Jena, Sesame, etc.</p> http://stackoverflow.com/questions/513493/database-schema-for-machine-tags/541584#541584 0 Answer by Gabriel for Database Schema for Machine Tags? Gabriel 2009-02-12T14:51:39Z 2009-02-12T14:51:39Z <p>I ended up implementing <a href="http://github.com/cldwalker/has_machine_tags/blob/master/test/schema.rb" rel="nofollow">this schema</a></p>