Does GridFS have an upsert?
For example, if i want to save an image with a specified _id, and one with that same _id already exists, i want it to overwrite (update) it. Otherwise, insert it.
|
feedback
|
|
The spec isn't really designed to support upserts, since you're technically modifying more than one document, and certainly tricky race conditions can arise. So we recommend what Matt has done, which is to delete first and then put. | |||
|
feedback
|
|
I looked at the mongo ruby gem source code and found this:
So, I did this in the code:
See the working sinatra script here: http://github.com/acani/acani-sinatra/blob/master/acani.rb#L97 | |||
|
feedback
|