Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 1 addition & 17 deletions openfeature-provider-local/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A high-performance OpenFeature provider for [Confidence](https://confidence.spot

## Features

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

## Configuration

### Resolution Modes

The provider supports two resolution modes:

- **WASM mode** (default): Uses WebAssembly resolver
- **Java mode**: Pure Java implementation of the resolver

Control the mode with the `LOCAL_RESOLVE_MODE` environment variable:

```bash
# Force WASM mode
export LOCAL_RESOLVE_MODE=WASM

# Force Java mode
export LOCAL_RESOLVE_MODE=JAVA
```

### Exposure Logging

Expand Down
5 changes: 1 addition & 4 deletions openfeature-provider-local/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
Expand Down Expand Up @@ -147,6 +143,7 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.17.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.dropwizard.metrics</groupId>
Expand Down

This file was deleted.

Loading