Giter Site home page Giter Site logo

Comments (10)

nicolaiarocci avatar nicolaiarocci commented on July 23, 2024

Again it's all about minimizing payload size. Currently, POST and PATCH responses only contain fields that the API updates for the client ('updated', 'created', '_id', 'etag', etc.). In case of a POST the client knows the other field values (it posted them). In case of a PATCH, the only issue could be the with the 'etag' being in the header and not in the payload (we discussed this in #29). Since a client must provide the previous 'etag' in order to successfully patch, it is assumed that it knows the item already. An eventual 'COHERENCE_MODE` setting (as discussed in #29) could also fill PATCH/POST responses with all the extra fields I guess.

from eve.

hluz avatar hluz commented on July 23, 2024

Agree. The main issue is that there is no etag at all returned from POST...

from eve.

nicolaiarocci avatar nicolaiarocci commented on July 23, 2024

Right!

from eve.

nicolaiarocci avatar nicolaiarocci commented on July 23, 2024

ebe26dc

from eve.

nicolaiarocci avatar nicolaiarocci commented on July 23, 2024

Thank you @hluz, by addressing your PRs I also got the chance to improve performance, especially with multiple document insertions (but also on PATCH), and refactor some things I didn't like in my code.

from eve.

joshvillbrandt avatar joshvillbrandt commented on July 23, 2024

AngularJS/resource could definitely make use of this "COHERENCE MODE." Although a valid 'If-Match' header / etag means that the client already has the latest data, AngularJS/resource completely overwrites the object with the response. The correct solution is to make AngularJS/resource aware of this, but it sure would be nice just to flick on this mode...

from eve.

cuibonobo avatar cuibonobo commented on July 23, 2024

@nicolaiarocci I'd like you to reconsider adding COHERENCE MODE to Eve. I'm currently working with a framework (Ember.js, though I hear Angular also has this problem) where I have to jump through hoops in order to save my data correctly if the server does not respond with the full object after POST.

Also, though it may seem like a waste of bandwidth because the client should 'know' what the values are, there may arise a situation (because of encoding or some other issue) where the POST is completed successfully but the data on the server is slightly different from the data on the client. Returning the full object allows the client to be absolutely sure that it has the same data as the server.

from eve.

joshvillbrandt avatar joshvillbrandt commented on July 23, 2024

@nicolaiarocci, I'd like to submit a pull request for this feature in milestone 0.4.

from eve.

nicolaiarocci avatar nicolaiarocci commented on July 23, 2024

@jenmontes @joshvillbrandt would you please open a separate ticket for the COHERENCE_MODE request? I'm willing to give it a spin, especially if Josh is going to PR it 👍

from eve.

joshvillbrandt avatar joshvillbrandt commented on July 23, 2024

BANDWIDTH_SAVER flag has been implemented. When BANDWIDTH_SAVER == False, the full response document is available including embedded documents and media files. I do not think projections are supported with the write verbs. Unit tests for embedded documents, media files, and projections were not added for the write verbs, but unit tests for basic fields were added.

By the way, I noticed that the self HATEOAS field was populated using item_lookup_field for GET and ID_FIELD for POST. I'm not sure why that was different... I'm using ID_FIELD in build_response_document().

from eve.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.