Skip to content

Commit 87538d4

Browse files
feat: Further cleanups of native resolver
1 parent 3e40d3b commit 87538d4

File tree

8 files changed

+14
-886
lines changed

8 files changed

+14
-886
lines changed

openfeature-provider-local/README.md

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A high-performance OpenFeature provider for [Confidence](https://confidence.spot
66

77
## Features
88

9-
- **Local Resolution**: Evaluates feature flags locally using WebAssembly (WASM) or pure Java
9+
- **Local Resolution**: Evaluates feature flags locally using WebAssembly (WASM)
1010
- **Low Latency**: No network calls during flag evaluation
1111
- **Automatic Sync**: Periodically syncs flag configurations from Confidence
1212
- **Exposure Logging**: Fully supported exposure logging (and other resolve analytics)
@@ -49,22 +49,6 @@ String value = client.getStringValue("my-flag", "default-value");
4949

5050
## Configuration
5151

52-
### Resolution Modes
53-
54-
The provider supports two resolution modes:
55-
56-
- **WASM mode** (default): Uses WebAssembly resolver
57-
- **Java mode**: Pure Java implementation of the resolver
58-
59-
Control the mode with the `LOCAL_RESOLVE_MODE` environment variable:
60-
61-
```bash
62-
# Force WASM mode
63-
export LOCAL_RESOLVE_MODE=WASM
64-
65-
# Force Java mode
66-
export LOCAL_RESOLVE_MODE=JAVA
67-
```
6852

6953
### Exposure Logging
7054

openfeature-provider-local/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@
147147
<groupId>org.apache.commons</groupId>
148148
<artifactId>commons-lang3</artifactId>
149149
<version>3.17.0</version>
150+
<scope>test</scope>
150151
</dependency>
151152
<dependency>
152153
<groupId>io.dropwizard.metrics</groupId>

0 commit comments

Comments
 (0)