blob: 3c077c1c1e32a4cafce3868e3c6eb3a4536c9748 [file] [log] [blame] [view]
# list-term-info
### Name
`index-list-term-info` - Gets document frequency and total number of occurrences of a term.
### Synopsis
```console
lucene index list-term-info <INDEX_DIRECTORY> <FIELD> <TERM> [?|-h|--help]
```
### Description
Gets document frequency and total number of occurrences (sum of the term frequency for each document) of a term.
### Arguments
`INDEX_DIRECTORY`
The directory of the index.
`FIELD`
The field to consider.
`TERM`
The term to consider.
### Options
`?|-h|--help`
Prints out a short help for the command.
### Example
List the term information from the index located at `C:\project-index\`:
```console
lucene index list-term-info C:\project-index
```