-
Notifications
You must be signed in to change notification settings - Fork 1
Client ruby
github-actions[bot] edited this page Aug 31, 2026
·
2 revisions
Official Ruby client for ThemisDB - A high-performance multi-model database with native LLM integration.
- β Full Type Safety - Modern Ruby with strong conventions
- β Transaction Support - BEGIN/COMMIT/ROLLBACK with isolation levels
- β Multi-Model - Relational, Graph, Vector operations
- β Query Support - AQL (Advanced Query Language)
- β Topology-Aware - Automatic shard routing with consistent hashing
- β Batch Operations - Efficient bulk operations
- β Vector Search - Similarity search for LLM/AI applications
- β Graph Operations - Traverse, shortest path, neighbors
- β Retry Logic - Automatic retries for failed requests
- β Idiomatic Ruby - Follows Ruby conventions and best practices
- Ruby >= 2.7
Add this line to your application's Gemfile:
gem 'themisdb'And then execute:
bundle installOr install it yourself as:
gem install themisdbrequire 'themisdb'
# Create client
client = ThemisDB::Client.new(['http://localhost:8080'])
# Basic CRUD
client.put('relational', 'users', 'alice', { name: 'Alice', age: 30 })
user = client.get('relational', 'users', 'alice')
puts user
# Delete
client.delete('relational', 'users', 'alice')require 'themisdb'
client = ThemisDB::Client.new(['http://localhost:8080'])
# Begin a transaction
tx = client.begin_transaction(isolation_level: 'SNAPSHOT')
begin
# Perform operations within the transaction
tx.put('relational', 'accounts', 'acc1', { balance: 1000 })
tx.put('relational', 'accounts', 'acc2', { balance: 500 })
# Read within transaction
acc1 = tx.get('relational', 'accounts', 'acc1')
puts "Account 1 balance: #{acc1['balance']}"
# Commit the transaction
tx.commit
rescue => e
# Rollback on error
tx.rollback
raise
endrequire 'themisdb'
client = ThemisDB::Client.new(['http://localhost:8080'])
# Batch Put
items = {
'user1' => { name: 'Alice', age: 30 },
'user2' => { name: 'Bob', age: 25 },
'user3' => { name: 'Charlie', age: 35 }
}
result = client.batch_put('relational', 'users', items)
puts "Succeeded: #{result[:succeeded].size}"
puts "Failed: #{result[:failed].size}"
# Batch Get
uuids = ['user1', 'user2', 'user3']
result = client.batch_get('relational', 'users', uuids)
result[:found].each do |uuid, user|
puts "#{user['name']} (#{uuid})"
end
# Batch Delete
result = client.batch_delete('relational', 'users', ['user1', 'user2'])require 'themisdb'
client = ThemisDB::Client.new(['http://localhost:8080'])
# Simple query
result = client.query('FOR user IN users FILTER user.age > 25 RETURN user')
result[:items].each do |user|
puts "#{user['name']} is #{user['age']} years old"
end
# Parameterized query
result = client.query(
'FOR user IN users FILTER user.city == @city RETURN user',
params: { city: 'Berlin' }
)
# Cursor-based pagination
result = client.query(
'FOR user IN users RETURN user',
use_cursor: true,
batch_size: 100
)
if result[:has_more]
next_page = client.query(
'FOR user IN users RETURN user',
use_cursor: true,
cursor: result[:next_cursor],
batch_size: 100
)
endrequire 'themisdb'
client = ThemisDB::Client.new(['http://localhost:8080'])
# Traverse graph from a starting node
nodes = client.graph_traverse('user:alice', max_depth: 3)
puts nodes
# Find shortest path between two nodes
path = client.graph_shortest_path('user:alice', 'user:charlie')
puts "Path: #{path.join(' -> ')}" if path
# Get neighbors of a node
neighbors = client.graph_neighbors('user:alice', direction: 'both')
puts neighbors
# Filter by edge type
friends = client.graph_neighbors('user:alice', edge_type: 'FRIEND', direction: 'out')
puts friendsPerfect for LLM and AI applications:
require 'themisdb'
client = ThemisDB::Client.new(['http://localhost:8080'])
# Upsert a vector
embedding = Array.new(768, 0.1) # 768-dimensional embedding
client.vector_upsert('doc1', embedding, metadata: { title: 'AI Research Paper' })
# Search for similar vectors
query_embedding = Array.new(768, 0.15)
results = client.vector_search(query_embedding, top_k: 10)
results[:results].each do |result|
score = result['score'] || result['distance'] || 0
puts "Document: #{result['id']}, Score: #{score.round(4)}"
end
# Search with metadata filter
results = client.vector_search(
query_embedding,
top_k: 10,
metadata_filter: { category: 'research' }
)
# Delete a vector
client.vector_delete('doc1')# config/initializers/themisdb.rb
require 'themisdb'
THEMIS_CLIENT = ThemisDB::Client.new(
[ENV.fetch('THEMISDB_URL', 'http://localhost:8080')],
namespace: Rails.env,
timeout: 30,
max_retries: 3
)
# app/models/concerns/themisdb_persistable.rb
module ThemisdbPersistable
extend ActiveSupport::Concern
included do
after_save :sync_to_themisdb
after_destroy :remove_from_themisdb
end
private
def sync_to_themisdb
THEMIS_CLIENT.put(
'relational',
self.class.table_name,
id.to_s,
attributes
)
end
def remove_from_themisdb
THEMIS_CLIENT.delete('relational', self.class.table_name, id.to_s)
end
end
# app/models/user.rb
class User < ApplicationRecord
include ThemisdbPersistable
endclient = ThemisDB::Client.new(
['http://localhost:8080', 'http://localhost:8081'], # Multiple endpoints
namespace: 'production', # Default: 'default'
timeout: 30, # Request timeout in seconds
max_retries: 3, # Maximum retry attempts
metadata_endpoint: nil, # Custom metadata endpoint
metadata_path: '/_admin/cluster/topology' # Topology path
)require 'themisdb'
client = ThemisDB::Client.new(['http://localhost:8080'])
begin
user = client.get('relational', 'users', 'nonexistent')
# user will be nil for not found
if user.nil?
puts 'User not found'
end
rescue ThemisDB::TopologyError => e
puts "Topology error: #{e.message}"
rescue ThemisDB::TransactionError => e
puts "Transaction error: #{e.message}"
rescue => e
puts "Request failed: #{e.message}"
end# Install dependencies
bundle install
# Run tests
bundle exec rspec
# Run linter
bundle exec rubocop
# Build gem
gem build themisdb.gemspecThemisDB::Client.new(endpoints, **options)Options:
-
namespace(String) - Namespace for entities (default: 'default') -
timeout(Integer) - Request timeout in seconds (default: 30) -
max_retries(Integer) - Maximum retry attempts (default: 3) -
metadata_endpoint(String, nil) - Custom metadata endpoint -
metadata_path(String) - Metadata path
-
get(model, collection, uuid)- Retrieve an entity -
put(model, collection, uuid, data)- Create/update an entity -
delete(model, collection, uuid)- Delete an entity -
batch_get(model, collection, uuids)- Batch retrieve -
batch_put(model, collection, items)- Batch create/update -
batch_delete(model, collection, uuids)- Batch delete -
query(aql, **options)- Execute AQL query -
graph_traverse(start_node, max_depth:, edge_type:)- Graph traversal -
graph_shortest_path(start_node, end_node, edge_type:)- Shortest path -
graph_neighbors(node, edge_type:, direction:)- Get neighbors -
vector_search(embedding, top_k:, metadata_filter:, **options)- Vector search -
vector_upsert(id, embedding, metadata:)- Upsert vector -
vector_delete(id)- Delete vector -
begin_transaction(**options)- Start transaction -
health(endpoint)- Health check
-
transaction_id- Get transaction ID -
active?- Check if transaction is active
-
get(model, collection, uuid)- Retrieve within transaction -
put(model, collection, uuid, data)- Update within transaction -
delete(model, collection, uuid)- Delete within transaction -
query(aql, **options)- Query within transaction -
commit- Commit the transaction -
rollback- Rollback the transaction
MIT
- Documentation: https://makr-code.github.io/ThemisDB/
- GitHub Issues: Report bugs or request features
- Discussions: Community discussions
ThemisDB 1.9.0-beta Β· Home Β· Module-Index Β· GitHub Β· Issues
ThemisDB 1.9.0-beta Β· Home Β· Wiki-Index Β· Module-Index Β· FAQ Β· Quick-Reference Β· GitHub Β· Issues Β· Discussions Β· License
- Batch Operations
- Best Practices
- CRUD Tutorial
- Custom Document Ingestion
- Getting Started Tutorial
- Interactive Examples
- Schema Design
- Video Tutorials
- AQL Reference
- AQL Examples
- AQL Overview
- AQL Feature Roadmap
- AQL Geospatial Guide
- AQL LLM Migration Guide
- AQL API
- AQL Grammar (EBNF)
- AQL Root Overview
- AQL Examples (root)
- API Reference
- API Module README
- OpenAPI Overview
- Client SDK Overview
- SDK Overview
- Operations
- Operations Overview
- Operations Runbook
- Operations Handbook
- ThemisCtl Admin Guide
- Pipeline E2E SOPs
- Deploy Overview
- Docker Overview
- Docker Hub README
- Helm Overview
- Packaging Overview
- Operator Overview
- Security Policy
- Production Hardening Checklist
- Security Hardening Guide
- Encryption Key Management
- Access Control Framework
- Zero Trust Policy
- API Authentication & Authorization
- HSM Production Setup
- PKCS11 Integration
- DSGVO / SOC2 Checklist
- Access Model Runbooks
- Access Model Dashboard
- Maturity Automation Runbook
- Access Review Automation
- Access Model Dashboard
- Access Model Runbooks
- Rights Revocation
- Dr Checklists
- Dr Testing
- Incident Response Playbook
- Incident Response Testing
- GPU Oom Recovery
- Grammar Debugging
- Metrics Scrape Troubleshooting
- Model Swap Procedure
- Quota Tuning
- Subagent Deployment
- Logging Configuration
- Content Model
- Crypto & Keys
- Feature Flags Reference
- Modular Architecture Roadmap
- Modularization Guide
- Module Architecture Index
- PostgreSQL Wire Protocol
- Query Scheduling
- Raft Consensus Design
- Resource Pooling
- Source Directory Guide
- Unified Access Model
- E1 001 Layered Retrieval Design
- E1 002 Ann Abstraction Strategy
- E1 003 Tensor Summary Types
- E1 004 Lora Package Distinction
- E1 005 Model Switch Compatibility
- E1 006 Federated Tensor Summaries
- E2 001 Evaluation Framework Design
- E2 002 Hardware Profile Strategy
- E2 003 Query Planner Routing Model
- E2 004 Approximation Governance Rules
- E2 005 Cross Layer Fallback Confidence Policy
- E3 001 Distributed Tensor Design
- E3 002 Manifest Coordination Strategy
- E3 003 Recovery And Erasure Choice
- E3 004 Tensor Fabric Infrastructure
- Contributing
- Contributing (root)
- Code of Conduct
- Support
- Maintainers
- CTest Guide
- Build Quick Reference
- Developer Wiki Index
- Build / Test / CI
- Module Index
- Branching Strategy
- Disabled Stub Policy
- Docs PR Policy
- GA Promotion Sign Off
- Github Milestones Setup
- Maturity Claim Verification Checklist
- Maturity Evidence Registry
- Merge Gate Bot Config
- Merge Gate Status Live
- Phase 1 Closure Report
- Phase Closure Policy
- Phase Dependency Graph
- Phase3 Enforcement Runbook
- Plugin Submodule Rollback
- PR Version Targeting
- PR Version Targeting Backfill
- Production Ready 2026 Delivery Plan
- Query Module Status
- Readme
- Release Promotion Gate Policy
- Release Validation Checklist
- Security Module 5671 Evidence Summary
- Sharding P6 Residual Risk Acceptance
- Sourcecode Compliance Governance
- Updates Development Status Sign Off
- Wave C Implementation Complete
- Blob Storage
- Cuda
- Ethics Ai
- Exporters
- Huggingface
- Image Analysis
- Importers
- RPC
- Scraper
- Themisdb Ai Watermark Detector
- User Storage Encrypted
- Chimera Architecture
- Chimera Future
- Chimera Readme
- Chimera Roadmap
- Covina Fastapi Ingestion Architecture
- Covina Fastapi Ingestion Future
- Covina Fastapi Ingestion Roadmap
- Vcc Base Architecture
- Vcc Base Future
- Vcc Base Roadmap
- Vcc Clara Ingestion Architecture
- Vcc Clara Ingestion Future
- Vcc Clara Ingestion Roadmap
- Vcc Veritas Architecture
- Vcc Veritas Future
- Vcc Veritas Roadmap
- 01 Hello World
- 02 Todo App
- 03 Contact Manager
- 04 Inventory System
- 05 Time Series Monitor
- 06 Graph Social Network
- 07 Vector Search Documents
- 08 Dms Erp System
- 09 Iot Sensor Network
- 10 Drone Image Analysis
- 11 Blog Wiki
- 12 Expense Tracker
- 13 Recipe Manager
- 14 Ecommerce Catalog
- 15 Event Management
- 16 Kanban Board
- 17 Crm
- 18 Realtime Chat
- 19 Recommendation Engine
- 20 Smart Home
- 21 Coding Platform
- 22 AQL Diagram Tool
- 23 Traveling Salesman
- 24 Moral Philosophy Debates
- API Versioning
- Distributed Sharding
- Feedback Plugins
- Geo
- Gnn
- Image Analysis
- Legal Lora Training
- LLM
- Lora Sync
- Migration
- Nlp
- Performance
- Railway
- Replication
- Rope Visualization
- Sample Product Config
- Security
- Client SDK Overview
- Quickstart
- Sdk Enhancements
- Sdk Implementation Summary
- Test Suite Readme
- Go
- Java
- Javascript
- Php
- Python
- Ruby
- Rust
- Typescript
- 01 Grundlegende Operationen
- 02 AQL Queries
- 03 Graph Daten
- 04 Multimodell Anwendung
- 01 Quickstart Guide
- 02 AQL Referenz Kurzuebersicht
- 03 Datenmodellierung Guide
- 04 Uebungsaufgaben
- 05 Best Practices Guide
- Training Documents
- Training Overview
- 01 Einfuehrung Und Uebersicht
- 02 Datenmodelle Und Architektur
- 03 AQL Abfragesprache
- 04 Installation Und Setup
- 05 Anwendungsbeispiele
- Training Presentations
- Dependencies Readme
- Processmonitor Readme
- Themis.admintools.shared Readme
- Themis.aqlquerybuilder Readme
- Themis.aqlquerybuilder Roadmap
- Themis.auditlogviewer Readme
- Themis.auditlogviewer Roadmap
- Themis.classificationdashboard Readme
- Themis.classificationdashboard Roadmap
- Themis.compliancereports Readme
- Themis.compliancereports Roadmap
- Themis.gisviewer.controlpanel Readme
- Themis.gisviewer.controlpanel Roadmap
- Themis.impactanalysisviewer Readme
- Themis.impactanalysisviewer Roadmap
- Themis.ingestiontool Readme
- Themis.ingestiontool Roadmap
- Themis.keyrotationdashboard Readme
- Themis.keyrotationdashboard Roadmap
- Themis.piimanager Readme
- Themis.piimanager Roadmap
- Themis.retentionmanager Readme
- Themis.retentionmanager Roadmap
- Themis.sagaverifier Readme
- Themis.sagaverifier Roadmap
- Themis.usbadmintool Readme
- Themis.usbadmintool Roadmap
- CI Readme
- CI Roadmap
- Compiler Diagnostics Readme
- Compiler Diagnostics Roadmap
- Completion Readme
- Copilot Ollama Router Readme
- Copilot Ollama Router Roadmap
- Gnn Readme
- Gnn Roadmap
- Rope Visualizer Readme
- Rope Visualizer Roadmap
- Tco Calculator Readme
- Tco Calculator Roadmap
- Tests Readme
- Tests Roadmap
- Themis Config Wx Readme
- Themis Docs Builder Readme
- Wikipedia Ingestion Readme