Regenerate README
`cargo readme > README.markdown`
- Id
- 75440247b9a947033f43e563128535a685fa9fe8
- Author
- Caio
- Commit time
- 2020-02-16T12:34:45+01:00
Modified tique/README.markdown
## Overview
-### `conditional_collector`
+Here's a brief overview of the functionality we provide. Check the
+module docs for more details and examples.
+
+### conditional_collector
Collectors with built-in support for changing the ordering and
cursor-based pagination (or rather: support for conditionally
TopCollector::<f64, Ascending, _>::new(10, true).top_fast_field(f64_field);
```
-Check the module docs for more details.
+### topterms
+
+Uses your index to find keywords and similar items to your documents
+or any arbitrary input.
+
+```rust
+let topterms = TopTerms::new(&index, vec![body, title])?;
+let keywords = topterms.extract(5, "the quick fox jumps over the lazy dog");
+```
## Unstable