I would like to create a logger using CouchDB. Basically, everytime someone accesses the file, I would like like to write to the database the username and time the file has been accessed. If this was MySQL, I would just add a row for every access correspond to the user. I am not sure what to do in CouchDB. Would I need to store each access in array? Then what do I do during update, is there a way to append to the document? Would each user have his own document?
|
I couldn't find any documentation on how to append to an existing document or array without retrieving and updating the entire document. So for every event you log, you'll have to retrieve the entire document, update it and save it to the database. So you'll want to keep the documents small for two reasons:
Your suggestion of user-based documents sounds like a good solution, as it will keep the documents small. Also, a single user is unlikely to generate concurrent log entries, minimizing any race conditions. Another option would be to store a new document for each log entry. Then you'll never have to update an existing document, eliminating any race conditions and the need to send large documents between your application and the database. |
|||
|
|
|
Niels' answer is going down the right path with transactions. As he said, you will want to create a different document for each access - think of them as actions. Here's what one of those documents might look like
If you were tracking multiple files, then you'd want to add a "file" field and include a unique identifier. Now the power of Map/Reduce begins to really shine, as it's extremely good at aggregating multiple pieces of data. Here's how to get the total number of views: Map:
Reduce:
The reason I threw the time stamp ( Cheers. |
|||
|
|
|
Although Sam's answer is an ok pattern to follow I wanted to point out that there is, indeed, a nice way to append to a Couch document. It just isn't very well documented yet. By defining an One caveat: You will need to encode the "/" as %2F when you request it from CouchDB or you'll get an error. Using slashes in document ids is totally ok. And here is a pair of map/reduce functions:
And now we can see another benefit of storing all accesses for a given file in one JSON document: to get a list of all accesses on a document just make a get request for the corresponding document. In this case:
If you wanted to count the number of times each file was accessed by each user you'll query the view like so:
Use group_level=1 if you just want to count total accesses per file. Finally, here is the if (!doc.accesses) doc.accesses = []; var event = {"at": when, "by": whom} doc.accesses.push(event); var message = 'Logged ' + event.by + ' accessing ' + doc._id + ' at ' + event.at; return [doc, message]; } Now whenever you need to log an access to a file issue a request like the following (depending on how you name your design document and update function):
|
||||
|