Reputation: 1511
Does AWS SDK for php supports number of get request's made on a particular object by their file name. Just need to find a unique count of the number of hits made on a particular object. Basically amazon count's number of requests made on a bucket. Just curious to know.
Upvotes: 2
Views: 3643
Reputation: 180024
S3 doesn't support this, so the PHP SDK won't either. Amazon doesn't count accesses for you.
You'd need to setup S3 access logging and use something to analyze those.
Upvotes: 3