https://github.com/tracing-performance-labs/go-dedupe
Go library for deduplicating string data
https://github.com/tracing-performance-labs/go-dedupe
data-deduplication go otel
Last synced: 8 months ago
JSON representation
Go library for deduplicating string data
- Host: GitHub
- URL: https://github.com/tracing-performance-labs/go-dedupe
- Owner: Tracing-Performance-Labs
- Created: 2025-06-05T03:03:39.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-06-30T23:41:16.000Z (11 months ago)
- Last Synced: 2025-07-07T06:43:24.175Z (11 months ago)
- Topics: data-deduplication, go, otel
- Language: Go
- Homepage:
- Size: 5 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-dedupe
This is a simple library for deduplicating strings in Go.
## Installation
```bash
go get github.com/Tracing-Performance-Labs/go-dedupe
```
## Sample usage
```go
package main
import (
"fmt"
"github.com/Tracing-Performance-Labs/go-dedupe"
)
func main() {
codec := dedupe.NewCodec()
compacted := codec.Encode("hello")
fmt.Println("Compacted:", compacted)
}
```
You can also run the bundled executables to test the library.
## License
MIT