the docs says,
For example, your application can achieve at least 3,500 PUT/COPY/POST/DELETE and 5,500 GET/HEAD requests per second per prefix in a bucket. There are no limits to the number of prefixes in a bucket. You can increase your read or write performance by parallelizing reads. For example, if you create 10 prefixes in an Amazon S3 bucket to parallelize reads, you could scale your read performance to 55,000 read requests per second.
But, it doesn't clearly mentions the concept of prefixes.
For eg,
Lets say I have 3 files and their corresponding keys are:
a/a1.txt
b/b1.txt
2.txt
As per my understanding, there is no concept of folders in S3. So, S3 will create something like this on my bucket.
|- a/
|- a1.txt
|- 2.txt
|- b/
|- b1.txt
I did came across this blog but it made things more confusing for me.
My questions:-
Does every Object created in S3 that ends with '/' is a prefix? In other words, Does every folder that we see in the S3 web console is a prefix?