Vitali Lovich
Vitali Lovich
Posted the PR although I don't know the spec well enough. https://github.com/snark/ignorance/issues/1 has a different proposal for anchoring. Can you let me know which solution is correct?
Is it possible today to provide a UniquePtr-like implementation of a custom smart pointer (Eg for boost::scoped_ptr)? I understand you mentioned that template support is needed (is there an issue...
It's not clear to me that's sufficient for the use-case I'm thinking. Specifically I'm thinking of it to wrap the cap'n'proto RPC C++ library rather than trying to reimplement it...
FWIW S3 now providing checksums in HTTP trailers: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html This way you can upload and provide a checksum that is validated against before the upload is published.
Yeah I agree with @KianNH. The worker should just use the available methods instead of doing parsing by hand.
Uggh. I should have been specific. I was running miniflare 2.5.0 not latest.
Have you seen streaming sigv4? https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-streaming.html The Authorization signature just says "I'm going to stream the body in a streaming sigv4 fashion" (`STREAMING-AWS4-HMAC-SHA256-PAYLOAD`). The body is sent in chunks that...
Is this about the ETag for UploadPart or for the completed download? For UploadPart we're not going to be returning the MD5 and that's an intentional deviation. If that's the...
Hmm... is there any documentation for how io_uring works with respect to interrupts? I would have thought that the io_uring syscalls can get interrupted but the actual scheduled I/O would...
Are the write amounts at least guaranteed to be aligned or do I have to align_down and rewrite the part I did? Is there any examples of recommended ways to...