-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get object metadata #9
Comments
Please implement this in branch Basic idea is to return the Content-Type and Content-Length without actually sending the object itself. This allows a client to check a file's size without having to download the entire file all the time. At this moment i'm not sure if this needs to be new methods on the Store interface or just the server getting the object and only sending the metadata. To keep things simple I would suggest that for now we just get the object from the store, but don't send it. |
* head_for_objects: Write docs for HEAD service. Refs #9
Doesn't really need to be implemented since Pyramid automatically adds a HEAD method to a resource that returns the same headers a GET, but without the body. While this still requires Augeias to fetch the entire object from storage, it does not require sending the object over the wire. So, that's a plus. |
* master: (27 commits) Remove OE configs. Refs #8 No sense in having a production.ini Update History. Doc fixes. Bump stuff. Refs #6 First version of scaffold. Refs #6 Write docs for HEAD service. Refs #9 Fix docs in a few places. Update setup Prepare for release Add release notes Add coveralls support. Update coveralls badge Update README Update docs. More doc updates. Update History Set docs to 0.1.0 Some doc updates. validationfailure to 400 ...
Currently, you always need to download an object to find out more about it. To make it possible to save some bandwith, we will implement the HEAD method for objects.
The text was updated successfully, but these errors were encountered: