User Senmiao Liu - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T19:20:11Zhttp://stackoverflow.com/feeds/user/28809http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb3How to build "Tagging" support using CouchDB? Senmiao Liu2008-10-17T04:57:22Z2008-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 > 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#2114040Answer by Senmiao Liu for Using regex to replace all spaces NOT in quotes in RubySenmiao Liu2008-10-17T08:29:03Z2008-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#2110970Answer by Senmiao Liu for looking for a good summary of SQL 2005 PartitioningSenmiao Liu2008-10-17T04:43:54Z2008-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#2110683Answer by Senmiao Liu for Good JavaScript IDE with JQuery support ?Senmiao Liu2008-10-17T04:21:30Z2008-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#2110240Answer by Senmiao Liu for Using regex to replace all spaces NOT in quotes in RubySenmiao Liu2008-10-17T03:46:02Z2008-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#211144Comment by Senmiao Liu on How to build "Tagging" support using CouchDB? Senmiao Liu2009-02-14T14:39:17Z2009-02-14T14:39:17ZThanks Paul, one view for one tag, that helps. http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb/211144#211144Comment by Senmiao Liu on How to build "Tagging" support using CouchDB? Senmiao Liu2008-10-17T09:10:58Z2008-10-17T09:10:58ZHi 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?