How to handle images folder with many images
- by Billy
I'm developing a new aspnet website with 200k images in a /Images/ -folder.
Many operations in Visual Studio is slow because it access the folder, adding a web service takes 10 minutes.
The images is not checked into scm (svn).
How should I structure the tree of code, to improve performance in VS?
It would also be neat if not all developers needed to copy 200k images to their local disk to be able to develop on the site.
Images as DB blobs is not an option.