I'm relatively new to Lucene.Net and still lack a good judgement as to what makes a reliable, production grade extensibility implementations, specifically for custom directory. Currently, I'm looking at implementing Azure and S3 custom directories. Although one might suggest taking an existing AzureDirectory implementation, it is suggested that it's not of production quality. In addition, it doesn't have any unit tests, so when Lucene or Azure Storage Library are updated, there is no reliable way to adjust and test API. I tried to discern a test suite from Lucene.Net code base, but it seems directory tests are scattered all over the test project and there is no simple way to do that.
That being said, could you advise on the following:
- What are best practices for implementing custom directory?
- What are essential test cases to ensure production quality of the implementation?
- Any performance metrics that must be met in order for implementation to scale when index grows and number of search requests increases?