Skip to content

interplex-ai/interplex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jan 15, 2025
2b7d321 · Jan 15, 2025

History

53 Commits
Dec 7, 2024
Dec 9, 2024
Dec 9, 2024
Oct 23, 2024
Nov 13, 2024
Jan 15, 2025
Oct 23, 2024
Oct 23, 2024
Dec 9, 2024
Dec 9, 2024
Oct 23, 2024
Nov 17, 2024
Oct 23, 2024
Dec 7, 2024
Dec 9, 2024
Oct 23, 2024
Dec 9, 2024

Repository files navigation

Interplex

A high performance cache written in Rust using grpc.

Test

RUST_LOG=debug cargo run in a terminal session to start interplex

In another terminal tab, execute a set/get:

grpcurl --plaintext -d '{"key": "1", "value": "2"}' localhost:8080 schema.v1.CacheService/Set
❯ grpcurl --plaintext -d '{"key": "1" }' localhost:8080 schema.v1.CacheService/Get
{
  "value": "2"
}