User Senmiao Liu - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T19:20:11Z http://stackoverflow.com/feeds/user/28809 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb 3 How to build "Tagging" support using CouchDB? Senmiao Liu 2008-10-17T04:57:22Z 2008-11-23T06:01:49Z <p>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?</p> <pre><code>def by_tag(tag): return ''' function(doc) { if (doc.tags.length &gt; 0) { for (var tag in doc.tags) { if (doc.tags[tag] == "%s") { emit(doc.published, doc) } } } }; ''' % tag </code></pre> http://stackoverflow.com/questions/205521/using-regex-to-replace-all-spaces-not-in-quotes-in-ruby/211404#211404 0 Answer by Senmiao Liu for Using regex to replace all spaces NOT in quotes in Ruby Senmiao Liu 2008-10-17T08:29:03Z 2008-10-17T08:29:03Z <p>Daniel,</p> <p>The space between double-quote and 'here' is NOT in quotes in your example.</p> http://stackoverflow.com/questions/94885/looking-for-a-good-summary-of-sql-2005-partitioning/211097#211097 0 Answer by Senmiao Liu for looking for a good summary of SQL 2005 Partitioning Senmiao Liu 2008-10-17T04:43:54Z 2008-10-17T04:43:54Z <p>This site may help you:</p> <p><a href="http://highscalability.com/" rel="nofollow">http://highscalability.com/</a></p> <p>specific tags:</p> <p><a href="http://highscalability.com/tags/shard" rel="nofollow">http://highscalability.com/tags/shard</a></p> <p><a href="http://highscalability.com/tags/sharding" rel="nofollow">http://highscalability.com/tags/sharding</a></p> http://stackoverflow.com/questions/209126/good-javascript-ide-with-jquery-support/211068#211068 3 Answer by Senmiao Liu for Good JavaScript IDE with JQuery support ? Senmiao Liu 2008-10-17T04:21:30Z 2008-10-17T04:35:26Z <p>KomodoEdit would be a good choice.It has built-in code assist for Jquery. You can also install Jquery Library Extension, if you want to use Jquery in Komodo extensions/macros.</p> <p>KomodoEdit: <a href="http://www.activestate.com/Products/komodo_ide/komodo_edit.mhtml" rel="nofollow">http://www.activestate.com/Products/komodo_ide/komodo_edit.mhtml</a></p> <p>Jquery Library Extension: <a href="http://community.activestate.com/xpi/jquery" rel="nofollow">http://community.activestate.com/xpi/jquery</a></p> http://stackoverflow.com/questions/205521/using-regex-to-replace-all-spaces-not-in-quotes-in-ruby/211024#211024 0 Answer by Senmiao Liu for Using regex to replace all spaces NOT in quotes in Ruby Senmiao Liu 2008-10-17T03:46:02Z 2008-10-17T03:46:02Z <p>try this one, string in single/double quoter is also matched (so you need to filter them, if you only need space):</p> <pre><code>/( |("([^"\\]|\\.)*")|('([^'\\]|\\.)*'))/ </code></pre> http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb/211144#211144 Comment by Senmiao Liu on How to build "Tagging" support using CouchDB? Senmiao Liu 2009-02-14T14:39:17Z 2009-02-14T14:39:17Z Thanks Paul, one view for one tag, that helps. http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb/211144#211144 Comment by Senmiao Liu on How to build "Tagging" support using CouchDB? Senmiao Liu 2008-10-17T09:10:58Z 2008-10-17T09:10:58Z Hi Paul, thanks for the points. Does temporary view is also generated incrementally? as Jan L. mentioned in another thread that, temp-views should not be used in production. Dose it means I have to create perm-views for each of the tags I have?