Version 1.1.0.0 of SharePoint Search Bench has been released:
http://www.codeplex.com/SPSearchBench
There are a few new features in this release:
- Full Text query generation tools. If you're not familiar with the syntax of Full Text search queries, there is a
FullTextBuilder class (and some other supporting classes) that can build the queries for you. Something like this:
FullTextBuilder text = FullTextBuilder.Select("Title, Author").Where(Condition.FreeText("dog, cat"));
Any number of conditions may be "and'ed" and "or'ed" together.
- Support for verbose logging with log4net.
- A CHM help file with API documentation. The documentation goes a little beyond listing the types and members in the assembly by providing some examples. It is not 100% comprehensive yet.