I have a Rails 3 app with Paperclip gem. Actually, my local directories structure is based on my record UUID to stock images:
5D5E5641-FCE8-4D0B-A413-A9F993CD0E34
becomes:
5/D/5/E/5/6/....... 3/4/full/image.jpg
5/D/5/E/5/6/....... 3/4/thumb/image.jpg
so that, I never have more than 32000 nodes per directory.
I want to migrate to S3: 1) Can I keep this directories structure on S3 ? Could it be a perf issue ? 2) Does Amazon S3 has its own directories management per bucket ?
Thanks.