@Transactional(readOnly = true)
public List<Content> searchList(String path, String queryString,
Integer siteId, Integer channelId, Date startDate, Date endDate,
int first, int max) throws CorruptIndexException, IOException,
ParseException {
Directory dir = new SimpleFSDirectory(new File(path));
return searchList(dir, queryString, siteId, channelId, startDate,
endDate, first, max);
}