Arctickey is an EU-hosted, Redis-compatible database service built on Valkey (the Linux Foundation fork of Redis). Your data stays in Europe, always.
Once your instance is running, click Connect to get your credentials:
Host: eu.arctickey.com Port: 16xxx Password: your-password TLS: Required
redis-cli --tls -h eu.arctickey.com -p 6379 -a YOUR_PASSWORD # Test the connection eu.arctickey.com:6379> PING PONG eu.arctickey.com:6379> SET hello "world" OK eu.arctickey.com:6379> GET hello "world"
Use this format for most clients:
rediss://:YOUR_PASSWORD@eu.arctickey.com:6379
Note: rediss:// (with double 's') indicates TLS/SSL connection.
rediss://
Arctickey works with any Redis client. Here are the most popular:
npm install ioredis
npm install redis
pip install redis
go get github.com/redis/go-redis/v9
pecl install redis
gem install redis
Getting Started with Arctickey
Arctickey is an EU-hosted, Redis-compatible database service built on Valkey (the Linux Foundation fork of Redis). Your data stays in Europe, always.
1. Create a Database#
2. Connect to Your Database#
Once your instance is running, click Connect to get your credentials:
Host: eu.arctickey.com Port: 16xxx Password: your-password TLS: RequiredUsing redis-cli#
redis-cli --tls -h eu.arctickey.com -p 6379 -a YOUR_PASSWORD # Test the connection eu.arctickey.com:6379> PING PONG eu.arctickey.com:6379> SET hello "world" OK eu.arctickey.com:6379> GET hello "world"Connection String#
Use this format for most clients:
rediss://:YOUR_PASSWORD@eu.arctickey.com:63793. Choose Your Client#
Arctickey works with any Redis client. Here are the most popular:
npm install ioredisnpm install redispip install redisgo get github.com/redis/go-redis/v9pecl install redisgem install redisNext Steps#