Pkarr Integration Guide
August 11, 2026 ยท View on GitHub
This guide covers production integration patterns for pkarr. For basic usage, see the quickstart. For feature flag selection, see features.
Client Configuration
Use Client::builder() to customize the client for your environment.
Backend Configuration
use pkarr::Client;
// Default: both DHT and relays enabled
let client = Client::builder().build()?;
// DHT only (no relay fallback)
let client = Client::builder()
.no_relays()
.build()?;
// Relays only (required for WASM, optional for firewall-restricted environments)
let client = Client::builder()
.no_dht()
.build()?;
// Custom relays
let client = Client::builder()
.relays(&["https://pkarr.pubky.app", "https://my-relay.example.com"])?
.build()?;
// Start without either default backend, then enable only your relays
let client = Client::builder()
.no_default_network()
.relays(&["https://my-relay.example.com"])?
.build()?;
// Custom DHT bootstrap nodes
let client = Client::builder()
.bootstrap(&["router.bittorrent.com:6881"])
.build()?;
// Extend defaults with additional nodes
let client = Client::builder()
.extra_bootstrap(&["my-bootstrap.example.com:6881"])
.extra_relays(&["https://my-relay.example.com"])?
.build()?;
Calling build() after no_default_network() without configuring at least one
backend returns BuildError::NoNetwork.
For a private DHT, use testnet diagnostic thresholds and customize
pkarr::dht::DhtConfig through ClientBuilder::dht when needed:
use pkarr::{dht::ReportPolicy, Client};
let client = Client::builder()
.no_default_network()
.bootstrap(&["127.0.0.1:6881"])
.dht_report_policy(ReportPolicy::testnet())
.dht(|config| {
config.port = Some(0);
config
})
.build()?;
ReportPolicy controls warning thresholds for DHT diagnostics; it does not
change which packets are accepted.
Cache Configuration
use pkarr::Client;
use std::sync::Arc;
// Adjust in-memory cache size (default: 1000 entries)
let client = Client::builder()
.cache_size(5000)
.build()?;
// Disable caching
let client = Client::builder()
.cache_size(0)
.build()?;
// Custom cache implementation
let custom_cache: Arc<dyn pkarr::Cache> = /* ... */;
let client = Client::builder()
.cache(custom_cache)
.build()?;
cache_size(0) disables all caching, including a custom cache supplied with
cache(). A custom Cache implementation must also override capacity() and
return a nonzero value; the trait's default capacity is zero and is treated as
disabled.
The lmdb-cache feature provides a persistent cache implementation, but the
client will not use it automatically. Enable the feature, create an
LmdbCache, and provide it to the builder:
[dependencies]
pkarr = { version = "7", features = ["lmdb-cache"] }
use pkarr::{extra::lmdb_cache::LmdbCache, Client};
use std::{path::Path, sync::Arc};
let cache = unsafe { LmdbCache::open(Path::new("./pkarr-cache"), 1000)? };
let client = Client::builder()
.cache(Arc::new(cache))
.build()?;
TTL Configuration
TTL bounds control when cached packets are considered expired.
use pkarr::Client;
let client = Client::builder()
// Minimum time before a packet is considered expired
.minimum_ttl(60) // At least 60 seconds
// Maximum time before forcing a refresh
.maximum_ttl(86400) // At most 24 hours
.build()?;
Timeout Configuration
use pkarr::Client;
use std::time::Duration;
let client = Client::builder()
.request_timeout(Duration::from_secs(5))
.build()?;
The timeout applies to both DHT and relay requests. A custom reqwest::Client
can configure relay HTTP behavior such as proxies or default headers, while
Pkarr continues to apply request_timeout to each request:
use pkarr::Client;
use std::time::Duration;
let http_client = reqwest::Client::builder()
.user_agent("my-pkarr-client/1.0")
.build()?;
let client = Client::builder()
.no_dht()
.reqwest_client(http_client)
.request_timeout(Duration::from_secs(5))
.build()?;
Using this example requires a compatible direct dependency such as
reqwest = { version = "0.13", default-features = false, features = ["rustls"] }
in the application.
Endpoints Configuration
When using the endpoints feature for service discovery:
use pkarr::Client;
let client = Client::builder()
.max_recursion_depth(7) // Limit CNAME/alias chain depth
.build()?;
Async Runtime Support
Pkarr provides an async API.
use pkarr::{Client, PublicKey, ResolvePolicy};
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = Client::builder().build()?;
let public_key: PublicKey = "pk:...".try_into()?;
let packet = client.resolve(&public_key, ResolvePolicy::CacheFirst).await;
Ok(())
}
Pkarr uses async_compat internally. If no Tokio runtime is detected, it
automatically wraps futures for compatibility. This means pkarr works with
async-std, smol, or any other executor.
WASM/Browser Integration
Setup
[dependencies]
pkarr = { version = "7", default-features = false, features = ["relays"] }
Constraints
- DHT unavailable: Browsers cannot open UDP sockets. Only HTTP relays work.
- Uses Fetch API: Relay requests use the browser's native fetch.
- Not WASI compatible: Only
wasm32-unknown-unknowntarget is supported.
Republishing Patterns
DHT records are ephemeral. Nodes drop records after a few hours. For persistent availability, implement periodic republishing.
Basic Republishing Loop
use pkarr::{errors::PublishError, Client, SignedPacket};
use std::time::Duration;
async fn republish_loop(
client: Client,
build_packet: impl Fn() -> SignedPacket,
) {
let interval = Duration::from_secs(3600); // Republish hourly
loop {
let packet = build_packet();
match client.publish(&packet).await {
Ok(stored_on) => {
println!("Republished successfully; stored on at least {stored_on} DHT nodes")
}
Err(PublishError::NotMostRecent) => {
eprintln!("A newer packet exists; resolve NetworkOnly before retrying")
}
Err(error) => eprintln!("Republish failed: {error}"),
}
tokio::time::sleep(interval).await;
}
}
Updating a Published Packet
The client does not serialize concurrent publishes for the same public key. If your application can build multiple different packets for one key at the same time, serialize the complete resolve, build, and publish sequence, for example with a single-permit semaphore per public key.
use pkarr::{
errors::ResolveError, Client, Keypair, ResolvePolicy, SignedPacket, Timestamp,
};
use std::io;
async fn republish_update(
client: &Client,
keypair: &Keypair,
) -> Result<(), Box<dyn std::error::Error>> {
// Get the highest observed sequence before building the replacement.
let observed_sequence = match client
.resolve(&keypair.public_key(), ResolvePolicy::NetworkOnly)
.await
{
Ok(existing) => existing.timestamp().as_u64(),
Err(ResolveError::NotFound) => 0,
Err(ResolveError::InvalidSignedPacket { seq }) => u64::try_from(seq)?,
Err(error) => return Err(error.into()),
};
let next_sequence = observed_sequence
.checked_add(1)
.filter(|sequence| *sequence <= i64::MAX as u64)
.ok_or_else(|| io::Error::other("Pkarr sequence is exhausted"))?;
let timestamp = Timestamp::from(Timestamp::now().as_u64().max(next_sequence));
let packet = SignedPacket::builder()
// Build the complete desired record set; omitted records are removed.
.txt("key".try_into()?, "updated_value".try_into()?, 300)
.timestamp(timestamp)
.sign(keypair)?;
let stored_on = client.publish(&packet).await?;
println!("Published successfully; stored on at least {stored_on} DHT nodes");
Ok(())
}
Resolve Policies
Use ResolvePolicy::CacheFirst for normal application lookups. It returns
fresh cached packets, or queries the configured backends on a cache miss or
expired cache entry. It does not fall back to expired local cache entries.
Use ResolvePolicy::CacheOnly when a locally cached or relay-cached packet is
acceptable even if it is expired. It may make an HTTP relay request after a
local cache miss, but it never queries DHT nodes.
Use ResolvePolicy::NetworkOnly when you need the most recent network state,
for example before rebuilding and publishing an updated packet. Handle
ResolveError::InvalidSignedPacket separately from ResolveError::NotFound:
the former reports a newer mutable-item sequence that did not contain a valid
PKARR packet and must not be interpreted as an unused key.
Next Steps
- API Documentation - Complete API reference
- Examples - Working code samples
- Pkarr Relay - Run your own relay