#58 - Add serverside JavaScript sample for MongoDB.#58
Closed
christophstrobl wants to merge 1 commit intomasterfrom
Closed
#58 - Add serverside JavaScript sample for MongoDB.#58christophstrobl wants to merge 1 commit intomasterfrom
christophstrobl wants to merge 1 commit intomasterfrom
Conversation
ea62e60 to
41c5a44
Compare
41c5a44 to
9ecb1df
Compare
christophstrobl
added a commit
that referenced
this pull request
Mar 9, 2015
Use a serverside script to simulate putIfAbsent as contracted by the Map interface. The op will be atomic since mongoDB will put a lock on db until the script is finished.
Member
|
I wonder if the example gets a bit simpler if we remove the repositories from the mix here. |
9ecb1df to
e4c94e4
Compare
christophstrobl
added a commit
that referenced
this pull request
Mar 12, 2015
Use a serverside script to simulate putIfAbsent as contracted by the Map interface. The op will be atomic since mongoDB will put a lock on db until the script is finished.
e4c94e4 to
253a607
Compare
christophstrobl
added a commit
that referenced
this pull request
Mar 12, 2015
Use a serverside script to simulate putIfAbsent as contracted by the Map interface. The op will be atomic since mongoDB will put a lock on db until the script is finished.
Use a serverside script to simulate putIfAbsent as contracted by the Map interface. The op will be atomic since mongoDB will put a lock on db until the script is finished.
253a607 to
17321e4
Compare
Member
Author
|
thanks @olivergierke - moved the script into the tests and deleted the custom repository. |
fd38e72 to
19bb907
Compare
christophstrobl
added a commit
that referenced
this pull request
Jul 16, 2015
Use a server-side script to simulate putIfAbsent(…) as contracted by the Map interface. The operation will be atomic since MongoDB will put a lock on database until the script is finished.
Member
|
That's merged :). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Use a serverside script to simulate
putIfAbsent.