Skip to content

Commit 5ede88a

Browse files
committed
Stopwords analyzer warning
1 parent b4d186b commit 5ede88a

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

9+
**WARNING**: The implementation of Stopwords analyzer is not final in ArangoDB 3.8.0, so using it might result in unpredictable behavior.
10+
This will be fixed in ArangoDB 3.8.1 and will have a different API.
11+
Any usage of the current Java driver API related to it is therefore discouraged.
12+
913
## [6.12.1] - 2021-04-28
1014

1115
- fixed request timeout in async driver (#ES-837)

src/main/java/com/arangodb/entity/arangosearch/analyzer/StopwordsAnalyzer.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@
2626
import java.util.Objects;
2727

2828
/**
29+
* WARNING:
30+
* The implementation of Stopwords analyzer is not final in ArangoDB 3.8.0, so using it might result in unpredictable behavior.
31+
* This will be fixed in ArangoDB 3.8.1 and will have a different API.
32+
* Any usage of the current Java driver API related to it is therefore discouraged.
33+
* See related <a href="https://github.com/arangodb/arangodb-java-driver/issues/394">bug report</a>
34+
* <p>
35+
* <p>
36+
* <p>
2937
* An Analyzer capable of removing specified tokens from the input.
3038
*
3139
* @author Michele Rastelli

0 commit comments

Comments
 (0)