Getting Started
Get started with Primatomic’s fully-managed cloud service in minutes. No infrastructure setup or maintenance required.
Primatomic Cloud
Section titled “Primatomic Cloud”The fastest way to get started is with our managed cloud service:
- Sign up at primatomic.com
- Create a workspace and get your API endpoint
- Generate credentials from your dashboard
- Start building with our SDKs
import primatomic
# Connect to Primatomic Cloudclient = primatomic.Client("your-workspace.primatomic.com:443", jwt_token="your-api-token")
# Your distributed system is ready!client.put_key("welcome", "greeting", b"Hello Primatomic!")
Client SDKs
Section titled “Client SDKs”Python
Section titled “Python”pip install primatomic
import primatomic
client = primatomic.Client("your-workspace.primatomic.com:443", jwt_token="your-api-token")
# Key-value storeclient.put_key("app", "user:123", b'{"name": "Alice"}')user_data = client.get_key("app", "user:123")
# Distributed lockswith client.lock("app", "critical-resource"): # Your critical section here pass
JavaScript
Section titled “JavaScript”Coming soon - JavaScript SDK is in development.
For early access to additional SDKs, contact us.
On-Premises Deployment
Section titled “On-Premises Deployment”Self-hosted deployment options will be available in future releases. Contact us to learn more about enterprise on-premises solutions.
Next Steps
Section titled “Next Steps”Learn the APIs
Section titled “Learn the APIs”- Key-Value API - Distributed data storage
- Lock API - Distributed synchronization
- Memory API - High-throughput shared memory
Authentication
Section titled “Authentication”- Authentication Guide - API tokens and security
Get Support
Section titled “Get Support”- Documentation: docs.primatomic.com
- Support: [email protected]
- Enterprise: Contact Sales
Pricing
Section titled “Pricing”Tier | Monthly Fee | RAM Included | Ops Included |
---|---|---|---|
Developer | Free | 1 GiB | 1M |
Starter | $49 | 10 GiB | 10M |
Growth | $199 | 50 GiB | 50M |
Scale | $799 | 256 GiB | 250M |
Enterprise | Custom | ≥1 TiB | ≥1B |
Start with our free tier and scale as you grow. No credit card required to get started.