I have a couchdb database containing photos, with one document per photo. I would like to create a view that groups the photos based on time proximity, i.e., group photos that are created within 30 mins of each other.
|
I don't know if Couch DB enables a simpler why, but definitely you can do as follows: Use Ektorp API, simply add field as "creation time" and value will be the time the attachment is created.
Then you can create a javascript function to query from current time to the last 30 minutes. And then create a view for that:
|
||||
|
|
Your js will be your map function, and in Ektorp you write and pass the js map function as string(to the code I posted before). You can get the current time as milis, subtract 30 mins, and acquire the time difference you needed(in java). Then you pass that mili time to the javascript. Remember your javascript function is a string, so you simply append the difference you need to that string. Which you can write as follows:
so above, timeDifferenceIneed your current time - 30 mins. Then pass this string to above and get your query result |
|||||
|
|
If your photo documents have a "timestamp" element that is collated properly in JavaScript, you can create a simple map that will emit the timestamps as keys and then calculate the window you want to query. A simple view map would look like this:
Once you know the timestamp of the photo you are focused on, you would have to generate startkey and endkey parameters set to your desired window. CouchDB will return rows with the _id values you need to build URLs to the photo docs. So for an image with a timestamp of 1332927024, your query would be
|
|||
|
|