Skip to content

Commit

Permalink
fix: javadoc #7
Browse files Browse the repository at this point in the history
  • Loading branch information
yankun1992 committed Jul 21, 2023
1 parent a418d17 commit ffeeeed
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Language: [简体中文](./docs/README.zh_cn.md)
- [requirements](#requirements)
- [install](#install)
- [Rust](#rust)
- [Java](#java)
- [Examples](#examples)
- [BloomFilter](#bloomfilter)
- [Python](#python-1)
Expand Down Expand Up @@ -58,6 +59,16 @@ pip install fastbloom-rs
fastbloom-rs = "{latest}"
```

## Java
maven
```xml
<dependency>
<groupId>io.github.yankun1992</groupId>
<artifactId>fastbloom</artifactId>
<version>{latest-version}</version>
</dependency>
```

# Examples

## BloomFilter
Expand Down
11 changes: 11 additions & 0 deletions docs/README.zh_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Language: [English](../README.md)
- [requirements](#requirements)
- [install](#install)
- [Rust](#rust)
- [Java](#java)
- [例子](#examples)
- [BloomFilter](#bloomfilter)
- [Python](#python-1)
Expand Down Expand Up @@ -57,6 +58,16 @@ pip install fastbloom-rs
fastbloom-rs = "{latest}"
```

## Java
maven
```xml
<dependency>
<groupId>io.github.yankun1992</groupId>
<artifactId>fastbloom</artifactId>
<version>{latest-version}</version>
</dependency>
```

# Examples

## BloomFilter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* A Counting Bloom filter works in a similar manner as a regular Bloom filter; however, it is able to keep track of
* insertions and deletions. In a counting Bloom filter, each entry in the Bloom filter is a small counter associated
* with a basic Bloom filter bit.
* <br/>
*
* <b>Reference</b>: F. Bonomi, M. Mitzenmacher, R. Panigrahy, S. Singh, and G. Varghese, "An Improved Construction
* for Counting Bloom Filters," in 14th Annual European Symposium on Algorithms, LNCS 4168, 2006
*/
Expand Down

0 comments on commit ffeeeed

Please sign in to comment.