You can use GroupDocs.Search without the license. The usage and functionalities are pretty much same as the licensed one but you will face few limitations while using the non-licensed API.
Evaluation Version Limitations
You can easily download GroupDocs.Search for evaluation. The evaluation download is the same as the purchased download. The evaluation version simply becomes licensed when you add a few lines of code to apply the license. You will face following limitations while using the API without the license.
Indexing Limitations
Following are the indexing limitations user will face while using the trial version of the GroupDocs.Search API:
Total number of indexed documents in one index or in several indexes for index repository cannot exceed 100 files.
Indexing stops when number of indexed documents in an index or in all indexes in index repository becomes 100.
All changed files can be updated in an index during Update.
New files can only be added to an index during update if total number of indexed documents is less than 100.
Searching Limitations
Only first 10 documents returned in search result.
Licensing
The license file contains details such as the product name, number of developers it is licensed to, subscription expiry date and so on. It contains the digital signature, so don’t modify the file. Even inadvertent addition of an extra line break into the file will invalidate it. You need to set a license before utilizing GroupDocs.Search API if you want to avoid its evaluation limitations.
The license can be loaded from a file or stream object. The easiest way to set a license is to put the license file in the same folder as the GroupDocs.Search.dll file and specify the file name, without a path, as shown in the examples below.
Applying License from File
The code below will explain how to apply product license.
// For complete examples and data files, please go to https://github.com/groupdocs-search/GroupDocs.Search-for-Java
//initialize License
Licenselic=newLicense();//Set license
lic.setLicense("GroupDocs.Search.lic");
Applying License from Stream
The following example shows how to load a license from a stream.
// For complete examples and data files, please go to https://github.com/groupdocs-search/GroupDocs.Search-for-Java
PathfileLocation=Paths.get("GroupDocs.Search.lic");try{byte[]data=Files.readAllBytes(fileLocation);ByteArrayInputStreaminputStream=newByteArrayInputStream(data);Licenselic=newLicense();lic.setLicense(inputStream);}catch(IOExceptione){System.out.println(e.getMessage());}
Applying Metered License
Note
You can also set Metered license as an alternative to license file. It is a new licensing mechanism that will be used along with existing licensing method. It is useful for the customers who want to be billed based on the usage of the API features. For more details, please refer to Metered Licensing FAQ section.
Here are the simple steps to use the **Metered**class.
Create an instance of **Metered **class.
Pass public & private keys to setMeteredKey method.
Do processing (perform task).
Call method **getConsumptionQuantity **of the **Metered **class.
It will return the amount/quantity of API requests that you have consumed so far.
Call method **getConsumptionCredit **of the **Metered **class (Since version 19.5).
It will return the credit that you have consumed so far.
Following is the sample code demonstrating how to use Metered class.
// For complete examples and data files, please go to https://github.com/groupdocs-search/GroupDocs.Search-for-Java
StringindexPath="c:\\MyIndex";StringdocumentsPath="c:\\MyDocuments";StringPublicKey="";// Your public license key
StringPrivateKey="";// Your private license key
Meteredmetered=newMetered();try{metered.setMeteredKey(PublicKey,PrivateKey);}catch(Exceptione){System.out.println(e.getMessage());}// Do indexing and searching in licensed mode
Indexindex=newIndex(indexPath);// Adding documents to index
index.add(documentsPath);// Searching
SearchResultresult=index.search("arbitrary");// Get consumption quantity
try{doubleconsumptionQuantitiy=Metered.getConsumptionQuantity();}catch(Exceptione){System.out.println(e.getMessage());}// Get consumption credit
try{doubleconsumptionCredit=Metered.getConsumptionCredit();}catch(Exceptione){System.out.println(e.getMessage());}
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.