ember-data-tastypie-adapter
ember-data-tastypie-adapter copied to clipboard
Concurrency
A few questions I have on concurrency, with a basic scenario such as:
- A: POST / Create new resource
- B: GET resource
- B: PUT changes resource
- A: PUT changes resource
How are we handling it? Number 4 should fail, right? What is the default behavior in tastypie? Is django USE_ETAGS flag mandatory for this to work? If it is, are we handling ETAGS?
I think we don't have any kind of tests covering this, if anyone has an example of this, I can write the tests and make sure the adapter is working.