Table of Contents |
---|
...
Swarm Setting | Effect |
---|---|
| All name-based searches use the name.lower field, so that SCSP names named searches are always case-insensitive. |
| All name-based searches use the name field, and will therefore be case-sensitive. |
Info |
---|
ImportantCustom metadata values are always indexed to be only case-sensitive or case-insensitive, depending on the value of |
Using content-length
The content-length field for objects is recognized as a numeric field and supports equality, less-than-equal-to, and greater-than-equal-to matching operators.
Info |
---|
TipYou can use ">=" or "=>" and "<=" or "=<". |
Using content-length
Code Block | ||
---|---|---|
| ||
GET /?format=json&domain=myDomain&content-length=1024 GET /?format=json&domain=myDomain&content-length<=1024 GET /?format=json&domain=myDomain&content-length>=1024 |
...