Back to articles
SurrealDB Has a Free Multi-Model Database for Modern Apps

SurrealDB Has a Free Multi-Model Database for Modern Apps

via Dev.to WebdevAlex Spinov

SurrealDB is a free, open-source multi-model database that combines SQL, document, graph, and time-series capabilities in one platform. What Is SurrealDB? SurrealDB is a next-generation database that eliminates the need for multiple specialized databases. One database for SQL queries, document storage, graph traversal, and real-time subscriptions. Key features: Multi-model: SQL + document + graph + time-series SurrealQL (SQL-like query language) Real-time subscriptions Built-in authentication and permissions Single binary deployment Embedded or server mode HTTP, WebSocket, and native SDK APIs ACID transactions Full-text search Quick Start Install # macOS/Linux curl -sSf https://install.surrealdb.com | sh # Docker docker run --rm -p 8000:8000 surrealdb/surrealdb:latest start Start Server surreal start --user root --pass root --bind 0.0.0.0:8000 file:mydata.db First Queries -- Create records (no schema needed) CREATE person : john SET name = "John Doe" , age = 30 , email = "john@email.co

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
2 views

Related Articles