User Paul Davis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T16:26:37Zhttp://stackoverflow.com/feeds/user/21265http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb/211144#2111441Answer by Paul Davis for How to build "Tagging" support using CouchDB? Paul Davis2008-10-17T05:15:36Z2008-10-17T05:15:36Z<p>You are very much on the right track with the view. A list of thoughts though:</p>
<p>View generation is incremental. If you're read traffic is greater than you're write traffic, then your views won't cause an issue at all. People that are concerned about this generally shouldn't be. Frame of reference, you should be worried if you're dumping hundreds of records into the view without an update.</p>
<p>Emitting an entire document will slow things down. You should only emit what is necessary for use of the view.</p>
<p>Not sure what the val == "%s" performance would be, but you shouldn't over think things. If there's a tag array you should emit the tags. Granted if you expect a tags array that will contain non-strings, then ignore this.</p>
http://stackoverflow.com/questions/147837/couchdb-modeling-for-multi-user/149084#1490843Answer by Paul Davis for CouchDB modeling for multi-userPaul Davis2008-09-29T15:09:09Z2008-09-29T15:09:09Z<p>There was a discussion on the <a href="http://couchdb.markmail.org/search/?q=twitter%20follower#query:twitter%20follower+page:1+mid:l4ibup6xoftffvrs+state:results" rel="nofollow">mailing list</a> awhile back that fits this question fairly well. The rule of thumb was to only store data in a document that is likely to change vs. grow. If the data is more likely to grow then you most likely want to store separate docs.</p>
<p>So in the case of a multi-user system one way of implementing ACL based permissions could be to create 'permission docs' that would be a mapping of user_id to doc_id with the appropriate permission indicated.</p>
<pre><code>{
_id: "permission_doc_1",
type: "acl",
user: "John",
docid: "John's Account Info",
read: true,
write: true
}
</code></pre>
<p>And your views would be something along the lines of </p>
<pre><code>function(doc)
{
emit([doc.user, doc.docid], {"read": doc.read, "write": doc.write});
}
</code></pre>
<p>And given a docid and userid, checking for permissions would be:</p>
<pre><code>http://localhost:5984/db/_view/permissions/all?key=["John", "John's Account Info"]
</code></pre>
<p>Obviously, this would require having some intermediary between the client and couch to make sure permissions were enforced.</p>
http://stackoverflow.com/questions/130092/couchdb-document-model-changes/141086#1410865Answer by Paul Davis for CouchDB Document Model Changes?Paul Davis2008-09-26T18:19:22Z2008-09-26T18:24:24Z<p>Time for RDBMS de-brainwashing. :)</p>
<p>One of the biggest points of couchdb's schema-less design is directly aimed at preventing the need for migrations. The JSON representation of objects makes it easy to just duck type your objects.</p>
<p>For example, given that you have a blog type web app with posts and whatever fancy things people store in a blog. Your post documents have fields like author, title, created at, etc. Now you come along and think to yourself, "I should track what phase the moon is in when I publish my posts..." you can just start adding moon_phase as an attribute to new posts.</p>
<p>If you want to be complete you'd go back and add moon_phase to old posts, but that's not strictly necessary.</p>
<p>In your views, you can access moon_phase as an attribute. And it'll be null or cause an exception or something. (Not a JS expert, I think null is the right answer)</p>
<p>Thing is, it doesn't really matter. If you feel like changing something just change it. Though make sure your views understand that change. Which in my experience doesn't really require much.</p>
<p>Also, if you're really paranoid, you might store a version/type attribute, as in:</p>
<pre><code>{
_id: "foo-post",
_rev: "23490AD",
type: "post",
typevers: 0,
moon_phase: "full"
}
</code></pre>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/121599/couchdb-backups-and-cloneing-the-database/122489#1224895Answer by Paul Davis for CouchDB Backups and Cloneing the DatabasePaul Davis2008-09-23T17:33:44Z2008-09-23T17:33:44Z<p>Another thing to be aware of is that you can copy files out from under a live database. Given that you may have a possibly large database, you could just copy it OOB from your test/production machine to another machine.</p>
<p>Depending on the write load of the machines it may be advisable to trigger a replication after the copy to gather any writes that were in progress when the file was copied. But replication of a few records would still be quicker than replication the entire database.</p>
<p>For reference see: <a href="http://wiki.apache.org/couchdb/FilesystemBackups" rel="nofollow">http://wiki.apache.org/couchdb/FilesystemBackups</a></p>
http://stackoverflow.com/questions/122298/how-do-you-schedule-index-updates-in-couchdb/122436#12243612Answer by Paul Davis for How do you Schedule Index Updates in CouchDBPaul Davis2008-09-23T17:25:20Z2008-09-23T17:25:20Z<p>CouchDB does regenerate views on update, but only on what has changed since the last read access to the view. Assuming your read volume greatly outweighs your write volume, this shouldn't be a problem.</p>
<p>When you're changing large numbers of documents at once this could lead to the possibility of the first read requests taking a noticeable amount of time. To alleviate this a few different possibilities have been suggested. Most rely on registering with CouchDB's update notifications and triggering reads automatically.</p>
<p>An example script for doing exactly that is available on the CouchDB wiki at [1].</p>
<p>[1] <a href="http://wiki.apache.org/couchdb/RegeneratingViewsOnUpdate" rel="nofollow">http://wiki.apache.org/couchdb/RegeneratingViewsOnUpdate</a></p>
http://stackoverflow.com/questions/501304/implementing-user-ratings-favorites-on-couchdb/510932#510932Comment by Paul Davis on Implementing user ratings / favorites on CouchDBPaul Davis2009-02-19T16:57:12Z2009-02-19T16:57:12ZTwo things:
You don't need a rating type per se, just do if(doc.user_id && doc.content_id && doc.rating) emit(doc.content_id, doc.rating)
Remember that to make this work you need to specify group=true when accessing the view.http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb/211144#211144Comment by Paul Davis on How to build "Tagging" support using CouchDB? Paul Davis2009-02-13T11:52:28Z2009-02-13T11:52:28ZTry not to think of views as an SQL query. A view should generally be designed to answer a class of queries rather than a specific query. In your case, you want one view for all tags, not one view for each tag.http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb/211144#211144Comment by Paul Davis on How to build "Tagging" support using CouchDB? Paul Davis2009-02-13T11:50:36Z2009-02-13T11:50:36ZSenmiao,
The problem with temp views is that they're temporary. Once there are no clients using them they get deleted and the next request requires the entire view to be rebuilt.