Replies: 1 comment
-
Hi @Enferium I'm surprised that this isn't working. There must be something fiddly that is keeping it from working. It will take a debugging effort to discover the root cause. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
First of all, thank you for this great work. I was able to understand a lot of things about nginx and njs thanks to it.
It all works perfectly, but in my use case I need to make range requests on files of several dozen gigabytes. The standard behaviour of caching the whole file before sending the corresponding range request is therefore not desirable.
I was able to see the link to this doc that you indicate in the default Template and the slice-by-slice caching method would be perfect.
I tried to add this feature unfortunately without success. The behaviour of nginx remains the same: download the whole file before sending the requested part.
My adding to default.conf looks like this:
Am I missing any particular information to enable slice-by-slice caching, for example:
Can slice-by-slice caching work with the default mechanism offered in case there is no range request.
Do I need to add information to the docker build process.
Is my .conf configuration correct, do I need to add information in this default.conf or elsewhere.
Beta Was this translation helpful? Give feedback.
All reactions