Main Page: Difference between revisions

From MemCP
Jump to navigation Jump to search
No edit summary
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
= MemCP – A Modern In-Memory Columnar Database =
<!-- Copyright (C) 2026 Carl-Philip Haensch -->
<!-- SPDX-License-Identifier: GPL-3.0-or-later -->


'''MemCP is a high-performance, in-memory, column-oriented database designed for modern workloads.''' 
= MemCP Database – Fast, Compressed SQL for OLTP and OLAP =
It provides a lightweight, developer-friendly alternative to traditional relational databases such as MySQL, with a focus on speed, compression, and direct API integration.


----
<div style="padding:2.5rem 2rem; margin:0 0 1.5rem; border-radius:14px; background:linear-gradient(135deg,#3d6208 0%,#64910c 52%,#76b512 100%); color:#fff; text-align:center;">
<div style="font-size:2.6rem; line-height:1.1; font-weight:700; margin-bottom:.7rem;">MemCP</div>
<div style="font-size:1.45rem; line-height:1.35; font-weight:600; margin:0 auto .9rem; max-width:56rem;">A fast, compressed, MySQL-protocol-compatible columnar database for modern OLTP and OLAP workloads</div>
<div style="font-size:1.05rem; line-height:1.6; margin:0 auto 1.4rem; max-width:54rem;">MemCP is an open-source SQL database written in Go. It combines persistent in-memory operation, adaptive column compression, parallel query execution and direct application APIs so operational data can be queried and analyzed without maintaining a separate analytical copy.</div>
<div style="margin-bottom:1.5rem;"><span style="display:inline-block; padding:.2rem .65rem; margin:.15rem; border:1px solid #ffffff88; border-radius:1rem;">Beta</span> <span style="display:inline-block; padding:.2rem .65rem; margin:.15rem; border:1px solid #ffffff88; border-radius:1rem;">Open Source</span> <span style="display:inline-block; padding:.2rem .65rem; margin:.15rem; border:1px solid #ffffff88; border-radius:1rem;">MySQL Protocol + HTTP APIs</span></div>
<div class="plainlinks"><span style="display:inline-block; margin:.25rem;">[[Install MemCP with Docker|<span style="display:inline-block; padding:.65rem 1rem; border-radius:6px; background:#fff; color:#496f0c; font-weight:700;">Get started with Docker</span>]]</span> <span style="display:inline-block; margin:.25rem;">[[Supported SQL|<span style="display:inline-block; padding:.65rem 1rem; border:1px solid #fff; border-radius:6px; color:#fff; font-weight:700;">Explore SQL support</span>]]</span> <span style="display:inline-block; margin:.25rem;">[https://github.com/launix-de/memcp <span style="display:inline-block; padding:.65rem 1rem; border:1px solid #fff; border-radius:6px; color:#fff; font-weight:700;">View on GitHub</span>]</span></div>
</div>


== Key Features ==
[[File:Memcp-Load.png|center|frameless|1000px|alt=MemCP database dashboard and workload overview]]


* '''High Performance''': NUMA-aware, parallelized query execution optimized for multicore CPUs, large caches, and NVMe SSDs. Handles both OLTP and OLAP workloads efficiently. 
<div style="padding:.85rem 1rem; margin:1rem 0 2rem; border-left:5px solid #d99b00; background:#fff7d6; color:#332600;">
* '''Columnar Storage''': Data is stored by column for improved compression, reduced memory footprint, and faster analytical queries. 
'''Development status: Beta.''' MemCP is under active development. Check [[Supported SQL]], [[Current Status and Open Issues]] and the durability requirements of your workload before migrating production data.
* '''In-Memory Operation''': Designed to keep data in memory, with configurable persistence backends for durability. 
</div>
* '''Built-in APIs''': Exposes RESTful endpoints directly from the database, reducing middleware overhead.
* '''Compression''': Multiple strategies (bit-packing, dictionary encoding, sequence compression) reduce storage by up to 80% compared to MySQL/MariaDB.
* '''Simple Deployment''': Start with a single <code>docker run</code> or <code>pm2 start</code> command. Lightweight footprint (~10MB). 
* '''Extensible''': Written in Go, with pluggable storage backends and custom frontend support (SQL, RDF, REST). 


----
<div style="padding:1rem 1.15rem; margin:1rem 0 2rem; border-left:5px solid #76b512; background:#f5f8f0; color:#17202a;">
'''Your MySQL queries are too slow?''' Run the same representative workload on MemCP instead of assuming another index or a larger MySQL server is the only answer. Compare results, durability and authenticated end-to-end latency; if the migration gates pass, move the performance-critical workload to MemCP. [[MySQL is too slow|Start the MemCP performance evaluation →]]
</div>


== Why MemCP? ==
<div style="padding:1rem 1.15rem; margin:1rem 0 2rem; border:1px solid #b7c99a; border-radius:9px; background:#f5f8f0; color:#17202a;">
'''Observed performance profile:''' MemCP has achieved '''speedups of 10× and more over MariaDB/PostgreSQL''' in measured OLAP and search-oriented workflows, where RecSets and compressed column scans avoid wide row materialization. In one filtered-list workflow over roughly one million documents, the same query took around '''30 seconds on PostgreSQL''' and '''1.6 seconds on MemCP'''. Isolated OLTP paths currently take about '''1.3–2.0× as long''', but in complete WordPress- and wiki-style page builds this has made '''no significant difference to overall page-loading time''' in the measured application workflows. These are workload observations, not universal guarantees; [[Performance Measurement|reproduce them on your data]].
</div>
 
== What is MemCP? ==
 
'''MemCP Database''' is a persistent, compressed, column-oriented SQL database for mixed OLTP and OLAP workloads. It speaks the MySQL client protocol, also exposes SQL over HTTP, and executes supported queries through a functional compiler and a parallel column-storage engine.
 
The name on this site refers to the database project. MemCP Database is '''not''' a Model Context Protocol (MCP) memory server and is unrelated to the C/C++ <code>memcpy()</code> memory-copy function. When writing about or linking to the project, the unambiguous name is '''MemCP Database'''.
 
== Problems MemCP solves ==
 
<div style="display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1rem; margin:1rem 0 2rem;">
<div style="padding:1rem 1.1rem; border:1px solid #b7c99a; border-radius:9px;">
<div style="font-size:1.1rem; font-weight:700; margin-bottom:.4rem;">Slow filtered lists on millions of rows</div>
Complex <code>WHERE</code>, joins, membership tests, <code>ORDER BY</code> and <code>LIMIT</code> can make a row store inspect or materialize far more data than the page returns. MemCP uses RecSets, late materialization, adaptive indexes and ordered braking to keep the working domain compact.<br />[[MySQL is too slow|Evaluate the query]] · [[RecSets|How RecSets work]]
</div>
<div style="padding:1rem 1.1rem; border:1px solid #b7c99a; border-radius:9px;">
<div style="font-size:1.1rem; font-weight:700; margin-bottom:.4rem;">Slow GROUP BY, COUNT and dashboards</div>
Column scans read only referenced compressed values. Parallel shard-local aggregation, group caches and computed structures target repeated analytical queries over fresh operational data.<br />[[Columnar Storage]] · [[Temporary Computed Columns]]
</div>
<div style="padding:1rem 1.1rem; border:1px solid #b7c99a; border-radius:9px;">
<div style="font-size:1.1rem; font-weight:700; margin-bottom:.4rem;">Slow database writes caused by fsync</div>
Durability is selectable per table. <code>safe</code> protects commits through power loss; <code>logged</code> has measured about 10× its write throughput when process-crash recovery is sufficient.<br />[[Persistency and Performance Guarantees|Choose a write strategy]]
</div>
<div style="padding:1rem 1.1rem; border:1px solid #b7c99a; border-radius:9px;">
<div style="font-size:1.1rem; font-weight:700; margin-bottom:.4rem;">Database writes wear out an SD card</div>
For reconstructible edge data, <code>sloppy</code> avoids a continuous WAL and normally publishes one compressed generation every 15 minutes, reducing constant flash writes while making the loss window explicit.<br />[[Hardware Requirements]] · [[Persistency and Performance Guarantees]]
</div>
</div>
 
== Choose your path ==
 
<div style="display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1rem; margin:1rem 0 2rem;">
<div style="padding:1rem 1.1rem; border:1px solid #b7c99a; border-radius:9px;">
<div style="font-size:1.15rem; font-weight:700; margin-bottom:.4rem;">Evaluate MemCP</div>
Understand the workload model, current status, hardware needs and differences from MySQL.
 
[[What is OLTP and OLAP|OLTP and OLAP]] · [[Comparison: MemCP vs. MySQL|Compare with MySQL]] · [[Hardware Requirements|Hardware requirements]]
</div>
<div style="padding:1rem 1.1rem; border:1px solid #b7c99a; border-radius:9px;">
<div style="font-size:1.15rem; font-weight:700; margin-bottom:.4rem;">Build an application</div>
Use the MySQL protocol, SQL over HTTP, RDF or application-specific endpoints inside MemCP.
 
[[Advanced SQL Tutorial|SQL tutorial]] · [[SQL over REST|SQL over HTTP]] · [[Database Tools compatibility with MemCP|Client tooling]]
</div>
<div style="padding:1rem 1.1rem; border:1px solid #b7c99a; border-radius:9px;">
<div style="font-size:1.15rem; font-weight:700; margin-bottom:.4rem;">Operate MemCP</div>
Plan deployment, migration, persistence, storage backends, settings and performance measurement.
 
[[Deployment]] · [[Persistency and Performance Guarantees|Durability]] · [[Migration from MySQL and PostgreSQL|Migration]]
</div>
<div style="padding:1rem 1.1rem; border:1px solid #b7c99a; border-radius:9px;">
<div style="font-size:1.15rem; font-weight:700; margin-bottom:.4rem;">Understand and contribute</div>
Explore the storage engine, optimizer, embedded Scheme runtime and project internals.
 
[[Query Planner and Physical Lowering|Query planner]] · [[RecSets]] · [[Columnar Storage]] · [[Contributing]]
</div>
</div>


Traditional relational databases were designed decades ago, optimized for spinning disks and single-core CPUs. 
== Quickstart ==
MemCP rethinks the core design for today’s hardware and workloads:


* Real-time dashboards and analytics 
=== Run with Docker ===
* Data-heavy SaaS platforms 
* Embedded systems with limited resources 
* High-throughput OLTP/OLAP hybrids 


----
<pre>
docker run --name memcp \
  -e ROOT_PASSWORD='choose-a-password' \
  -p 4321:4321 -p 3307:3307 \
  -v memcp-data:/data \
  carli2/memcp:latest
</pre>


== Quick Start ==
Then open <code>http://localhost:4321</code> and connect a MySQL application to <code>127.0.0.1</code> on port '''3307'''. The volume mounted at <code>/data</code> retains persistent table data across container replacement. See [[Install MemCP with Docker|the complete Docker guide]] before deploying it as a service.


Clone and build MemCP from source:
=== Build from source ===


<pre>
<pre>
git clone https://github.com/launix-de/memcp
git clone https://github.com/launix-de/memcp
cd memcp
cd memcp
go get
go mod download
make
make
pm2 start ./memcp ./data/
./memcp --api-port=4321 --mysql-port=3307 lib/main.scm
</pre>
</pre>


Line 45: Line 109:


<pre>
<pre>
mysql -u root -p -P 3307
mysql -h 127.0.0.1 -u root -p -P 3307
Enter password: admin
# Enter the password selected for this data directory.
</pre>
 
The development default for a fresh data directory is <code>admin</code>. Change it before exposing MemCP to another machine. MemCP can also be supervised with PM2:
 
<pre>
pm2 start ./memcp --name memcp -- \
  --no-repl -data ./data --api-port=4321 --mysql-port=3307 lib/main.scm
</pre>
</pre>


----
Background deployments must use <code>--no-repl</code> so that closing standard input does not terminate the interactive console and stop the server. See [[Compile MemCP from Source|Build from Source]], [[Deployment]] and [[MemCP Console]].
 
== Key features ==
 
<div style="display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:.8rem; margin:1rem 0;">
<div style="padding:.9rem 1rem; border-top:4px solid #76b512; background:#f5f8f0; color:#17202a;">'''High performance'''<br />Parallel, batch-oriented query execution is designed for multicore CPUs, compact working sets and fast persistent storage, serving both OLTP and OLAP workloads.</div>
<div style="padding:.9rem 1rem; border-top:4px solid #76b512; background:#f5f8f0; color:#17202a;">'''Columnar storage'''<br />Data is stored by column for improved compression, a smaller memory footprint and fast analytical access.</div>
<div style="padding:.9rem 1rem; border-top:4px solid #76b512; background:#f5f8f0; color:#17202a;">'''Persistent in-memory operation'''<br />MemCP is designed to keep active data in memory while offering configurable per-table durability and persistence backends.</div>
<div style="padding:.9rem 1rem; border-top:4px solid #76b512; background:#f5f8f0; color:#17202a;">'''Fast configurable writes'''<br />Choose durability per table: <code>safe</code> protects committed data through power loss, while measured <code>logged</code> paths have reached about 10× its write throughput; <code>sloppy</code> batches reconstructible data into the normal 15-minute rebuild cycle.</div>
<div style="padding:.9rem 1rem; border-top:4px solid #76b512; background:#f5f8f0; color:#17202a;">'''Built-in APIs'''<br />SQL over HTTP and in-database services can remove an extra middleware hop for suitable applications.</div>
<div style="padding:.9rem 1rem; border-top:4px solid #76b512; background:#f5f8f0; color:#17202a;">'''Adaptive compression'''<br />Bit-packing, dictionary encoding and sequence compression reduce the bytes read for suitable data. Historical imports have reached reductions around 80% versus their MySQL/MariaDB representation; measure your own schema.</div>
<div style="padding:.9rem 1rem; border-top:4px solid #76b512; background:#f5f8f0; color:#17202a;">'''Simple deployment'''<br />Start with Docker, PM2 or the native binary. The compact application has historically had an installation footprint of approximately 10 MB.</div>
<div style="padding:.9rem 1rem; border-top:4px solid #76b512; background:#f5f8f0; color:#17202a;">'''Extensible frontends'''<br />The Go storage engine and embedded Scheme environment support SQL, RDF, REST and custom application interfaces.</div>
<div style="padding:.9rem 1rem; border-top:4px solid #9ad32d; background:#f5f8f0; color:#17202a;">'''Cost-based query execution'''<br />Logical decorrelation and join optimization are separated from cost-based physical selection of scans, indexes, RecSets, reusable caches and execution pipelines.<br />[[Query Planner and Physical Lowering|How MemCP plans and lowers queries →]] · [[RecSets|How compact record sets process large domains →]]</div>
</div>
 
== Why MemCP? ==
 
Traditional relational databases were designed around spinning disks and comparatively small numbers of CPU cores. MemCP rethinks storage and query execution for modern multicore systems, large caches, fast storage and mixed workloads.
 
Typical use cases include:
 
* real-time dashboards and analytics;
* data-heavy SaaS platforms;
* embedded systems with limited resources;
* high-throughput OLTP/OLAP hybrids.
 
Whether MemCP is a good fit depends on the required SQL compatibility, durability, query mix, data size and operational environment. Review [[Supported SQL]], [[Persistency and Performance Guarantees]] and [[Performance Measurement]] rather than treating benchmark figures as universal guarantees.


== MemCP vs. MySQL ==
== MemCP vs. MySQL ==


{| class="wikitable"
{| class="wikitable" style="width:100%;"
! Feature
! Feature
! MySQL
! MySQL
! MemCP
! MemCP
|-
|-
| Storage Model
| Storage model
| Row-based
| Primarily row-based
| Column-based (compressed)
| Column-based and compressed
|-
|-
| Performance
| Performance focus
| Good
| General-purpose relational workloads
| NUMA-optimized, in-memory
| Parallel, in-memory-oriented execution for mixed operational and analytical workloads
|-
|-
| In-Memory Capable
| In-memory capability
| Limited
| Available through selected engines and caching
| Yes (default)
| Central design goal and default operating model
|-
|-
| REST API Integration
| REST API integration
| External
| Normally external
| Built-in
| Built in
|-
|-
| Installation Footprint
| Installation footprint
| ~150MB+
| Common server installations are approximately 150 MB or larger
| ~10MB
| The native application has historically been approximately 10 MB
|-
|-
| Open Source
| Open source
| ✅
| ✅
| ✅
| ✅
|}
|}


----
MemCP provides MySQL protocol compatibility but does not claim to implement every MySQL feature. See [[Comparison: MemCP vs. MySQL]] for a detailed comparison and [[Database Tools compatibility with MemCP]] for client compatibility.


== Architecture Overview ==
== Architecture overview ==


* '''Tables, Schemas, Columns''': Familiar SQL-style structures with a columnar physical layout.
* '''Tables, schemas and columns''': Familiar SQL structures use a compressed columnar physical layout. See [[Databases, Tables and Columns]] and [[Columnar Storage]].
* '''Transaction Model''': Supports both OLTP and OLAP semantics with delta + main storage.
* '''Transaction model''': Delta and main storage support mixed OLTP and OLAP semantics. See [[Transactions and Isolation]] and [[Shards, RecordIDs, Main Storage, Delta Storage]].
* '''Persistence''': Configurable storage backends (filesystem, S3, Ceph).
* '''Query planning''': Logical optimization is separated from physical execution decisions. See [[Query Planner and Physical Lowering]].
* '''Frontends''': Multiple query interfaces:
* '''Persistence''': Per-table durability can use filesystem, S3 or Ceph/RADOS storage. See [[Persistency and Performance Guarantees]] and [[Storage Backends]].
  - SQL frontend (MySQL wire protocol + SQL over REST) 
* '''Operations''': The dashboard, metrics, process inspection and memory controls support day-to-day operation. See [[Dashboard and Operations]] and [[Memory Management and Eviction]].
  - RDF/graph query engine 
* '''Scale-out roadmap''': MemCP is single-node today. A leaderless CRUSH/RADOS and MOESI-inspired cluster design is planned, but must not be treated as an available production feature. See [[Cluster Monitor]].
  - Custom APIs via in-database web apps 
* '''Frontends''': MemCP provides multiple query and application interfaces:
 
** SQL through the MySQL wire protocol and SQL over HTTP;
----
** an RDF/graph query frontend;
** custom APIs through in-database web applications.


== Documentation ==
== Documentation ==


* [[What is OLTP and OLAP]] 
The following navigation remains on the start page so users and search engines can reach every major documentation area directly.
* [[History of the MemCP project]] 
* [[Hardware Requirements]] 
* [[Persistency and Performance Guarantees]] 
* [[Comparison: MemCP vs. MySQL]] 
* [[Install MemCP with Docker|Install with Docker]] 
* [[Compile MemCP from Source|Build from Source]] 
* [[Contributing]] 
* [[SQL over REST]] 
* [[In-Database WebApps|REST & Microservices]] 
 
----


=== Introduction and evaluation ===


===Navigation===
* [[What is OLTP and OLAP]]
* [[History of the MemCP project]]
* [[Hardware Requirements]]
* [[Persistency and Performance Guarantees]]
* [[Current Status and Open Issues]]
* [[MySQL is too slow|SQL performance problems MemCP solves]]
* [[Comparison: MemCP vs. MySQL]]


====Introduction====
=== Getting started ===
*[[What is OLTP and OLAP]]
*[[History of the MemCP project]]
*[[Hardware Requirements]]
*[[Persistency and Performance Guarantees]]
*[[Current Status and Open Issues]]
*[[Comparison: MemCP vs. MySQL]]


====Getting Started====
* [[Install MemCP with Docker|Install with Docker]]
*[[Install MemCP with Docker|With Docker]]
* [[With Singularity|Install with Singularity/Apptainer]]
*[[With Singularity]]
* [[Compile MemCP from Source|Build from Source]]
*[[Compile MemCP from Source|Build from Source]]
* [[Contributing]]
*[[Contributing]]  
* [[Introduction to Scheme]]
*[[Introduction to Scheme]]
* [[Full SCM API documentation]]
*[[Full SCM API documentation]]


====Administration====
=== Administration ===


* [[Deployment]]
* [[Deployment]]
* [[Migration from MySQL and PostgreSQL]]
* [[Migration from MySQL and PostgreSQL]]
* [[Settings]]
* [[Settings]]
*[[Process Hibernation]]
* [[Security and Authentication]]
*[[Performance Measurement]]
* [[Dashboard and Operations]]
*[[MemCP Console]]
* [[Memory Management and Eviction]]
* [[Process Hibernation]]
* [[Performance Measurement]]
* [[MemCP Console]]
 
=== Frontends ===
 
==== SQL frontend ====


====Frontends====
* [[Supported SQL]]
* [[Advanced SQL Tutorial]]
* [[JSON|JSON and SQL/JSON]]
* [[Triggers]]
* [[SQL over REST]]
* [[Database Tools compatibility with MemCP|Supported Tooling]]
* [[Query Planner and Physical Lowering|How SQL operators are implemented]]
* [[Add custom SQL operators to MemCP]]


=====SQL Frontend=====
==== RDF frontend ====
*[[Supported SQL]]
*[[Advanced SQL Tutorial]]
*[[SQL over REST]]
*[[Database Tools compatibility with MemCP|Supported Tooling]]
*[[How SQL Operators are implemented on MemCP]]
*[[Add custom SQL operators to MemCP]]


=====RDF Frontend=====
* [[Introduction to RDF]]
*[[Introduction to RDF]]
* [[Advanced Graph Querying]]
*[[Advanced Graph Querying]]
* [https://github.com/launix-de/rdfop RDF browser and templating example]
*[[RDF templating and model driven development]]


=====Custom Frontends=====
==== Custom frontends ====


*[[In-Database WebApps|In-Database WebApps and REST Services]]
* [[In-Database WebApps and REST Services]]
*[[MemCP for Microservices]]
* [[MemCP for Microservices]]
*[[Websockets in MemCP]]
* [[Websockets in MemCP]]


==== Persistency Backends (= Storage) ====
=== Persistence backends and storage ===


* [[File System]]
* [[File System]]
* [[S3 Buckets]]
* [[Storage Backends|S3-compatible and Ceph/RADOS storage]]
* [[Ceph/Rados]]
* [[Cluster Monitor]]
* [[Cluster Monitor]]


====Internals====
=== Internals ===


=====How things work in MemCP=====  
==== How MemCP works ====


*[[Databases, Tables and Columns]]
* [[Databases, Tables and Columns]]
*[[Shards, RecordIDs, Main Storage, Delta Storage]]
* [[Shards, RecordIDs, Main Storage, Delta Storage]]
*[[Columnar Storage]]
* [[Columnar Storage]]
*[[Transactions]]  
* [[Transactions and Isolation]]
*[[Full SCM API documentation]]  
* [[Query Planner and Physical Lowering]]
* [[Full SCM API documentation]]


===== SCM Documentation =====
==== Scheme documentation ====


* [[SCM Builtins]]
* [[SCM Builtins]]
Line 193: Line 288:
* [[Storage]]
* [[Storage]]


=====Optimizations=====
==== Optimizations ====
*[[In-Memory Compression, Columnar Compression Techniques]]
 
*[[Temporary Columns]]
* [[Benchmark MemCP vs. MariaDB on Wordpress|Benchmarks]]
*[[Data Auto Sharding and Auto Indexing]]
* [[Query Planner and Physical Lowering]]
* [[In-Memory Compression, Columnar Compression Techniques]]
* [[Temporary Computed Columns]]
* [[Data Auto Sharding and Auto Indexing]]
* [[Parallel Computing]]
* [[Parallel Computing]]


== Further reading ==


----
* [https://github.com/launix-de/memcp MemCP on GitHub]
 
* [https://www.vldb.org/pvldb/vol13/p2649-boncz.pdf VLDB Research Paper]
== Further Reading ==
* [https://cs.emis.de/LNI/Proceedings/Proceedings241/383.pdf LNI Proceedings Paper]
 
* [https://www.dcs.bbk.ac.uk/~dell/teaching/cc/paper/sigmod10/p135-malewicz.pdf Large Graph Algorithms]
* [https://github.org/launix-de/memcp MemCP on GitHub]
* [https://www.vldb.org/pvldb/vol13/p2649-boncz.pdf VLDB Research Paper]
* [https://cs.emis.de/LNI/Proceedings/Proceedings241/383.pdf LNI Proceedings Paper]
* [https://www.dcs.bbk.ac.uk/~dell/teaching/cc/paper/sigmod10/p135-malewicz.pdf Large Graph Algorithms]
 
Additional blog posts on design decisions, compression techniques, and performance optimization are available on the [https://launix.de/launix/ Launix blog].


----
Additional blog posts on design decisions, compression techniques and performance optimization are available on the [https://launix.de/launix/ Launix blog].


== Community ==
== Community ==


MemCP is an open-source project maintained by developers for developers.
MemCP is an open-source project maintained by developers for developers. Contributions are welcome in the form of bug reports, feature requests and pull requests.
Contributions are welcome — whether in the form of bug reports, feature requests, or pull requests.


See: [[Contributing]]
See [[Contributing]] and the [https://github.com/launix-de/memcp GitHub repository].

Latest revision as of 22:48, 7 September 2026


MemCP Database – Fast, Compressed SQL for OLTP and OLAP

MemCP
A fast, compressed, MySQL-protocol-compatible columnar database for modern OLTP and OLAP workloads
MemCP is an open-source SQL database written in Go. It combines persistent in-memory operation, adaptive column compression, parallel query execution and direct application APIs so operational data can be queried and analyzed without maintaining a separate analytical copy.
Beta Open Source MySQL Protocol + HTTP APIs
MemCP database dashboard and workload overview

Development status: Beta. MemCP is under active development. Check Supported SQL, Current Status and Open Issues and the durability requirements of your workload before migrating production data.

Your MySQL queries are too slow? Run the same representative workload on MemCP instead of assuming another index or a larger MySQL server is the only answer. Compare results, durability and authenticated end-to-end latency; if the migration gates pass, move the performance-critical workload to MemCP. Start the MemCP performance evaluation →

Observed performance profile: MemCP has achieved speedups of 10× and more over MariaDB/PostgreSQL in measured OLAP and search-oriented workflows, where RecSets and compressed column scans avoid wide row materialization. In one filtered-list workflow over roughly one million documents, the same query took around 30 seconds on PostgreSQL and 1.6 seconds on MemCP. Isolated OLTP paths currently take about 1.3–2.0× as long, but in complete WordPress- and wiki-style page builds this has made no significant difference to overall page-loading time in the measured application workflows. These are workload observations, not universal guarantees; reproduce them on your data.

What is MemCP?

MemCP Database is a persistent, compressed, column-oriented SQL database for mixed OLTP and OLAP workloads. It speaks the MySQL client protocol, also exposes SQL over HTTP, and executes supported queries through a functional compiler and a parallel column-storage engine.

The name on this site refers to the database project. MemCP Database is not a Model Context Protocol (MCP) memory server and is unrelated to the C/C++ memcpy() memory-copy function. When writing about or linking to the project, the unambiguous name is MemCP Database.

Problems MemCP solves

Slow filtered lists on millions of rows

Complex WHERE, joins, membership tests, ORDER BY and LIMIT can make a row store inspect or materialize far more data than the page returns. MemCP uses RecSets, late materialization, adaptive indexes and ordered braking to keep the working domain compact.
Evaluate the query · How RecSets work

Slow GROUP BY, COUNT and dashboards

Column scans read only referenced compressed values. Parallel shard-local aggregation, group caches and computed structures target repeated analytical queries over fresh operational data.
Columnar Storage · Temporary Computed Columns

Slow database writes caused by fsync

Durability is selectable per table. safe protects commits through power loss; logged has measured about 10× its write throughput when process-crash recovery is sufficient.
Choose a write strategy

Database writes wear out an SD card

For reconstructible edge data, sloppy avoids a continuous WAL and normally publishes one compressed generation every 15 minutes, reducing constant flash writes while making the loss window explicit.
Hardware Requirements · Persistency and Performance Guarantees

Choose your path

Evaluate MemCP

Understand the workload model, current status, hardware needs and differences from MySQL.

OLTP and OLAP · Compare with MySQL · Hardware requirements

Build an application

Use the MySQL protocol, SQL over HTTP, RDF or application-specific endpoints inside MemCP.

SQL tutorial · SQL over HTTP · Client tooling

Operate MemCP

Plan deployment, migration, persistence, storage backends, settings and performance measurement.

Deployment · Durability · Migration

Understand and contribute

Explore the storage engine, optimizer, embedded Scheme runtime and project internals.

Query planner · RecSets · Columnar Storage · Contributing

Quickstart

Run with Docker

docker run --name memcp \
  -e ROOT_PASSWORD='choose-a-password' \
  -p 4321:4321 -p 3307:3307 \
  -v memcp-data:/data \
  carli2/memcp:latest

Then open http://localhost:4321 and connect a MySQL application to 127.0.0.1 on port 3307. The volume mounted at /data retains persistent table data across container replacement. See the complete Docker guide before deploying it as a service.

Build from source

git clone https://github.com/launix-de/memcp
cd memcp
go mod download
make
./memcp --api-port=4321 --mysql-port=3307 lib/main.scm

Connect with MySQL tooling:

mysql -h 127.0.0.1 -u root -p -P 3307
# Enter the password selected for this data directory.

The development default for a fresh data directory is admin. Change it before exposing MemCP to another machine. MemCP can also be supervised with PM2:

pm2 start ./memcp --name memcp -- \
  --no-repl -data ./data --api-port=4321 --mysql-port=3307 lib/main.scm

Background deployments must use --no-repl so that closing standard input does not terminate the interactive console and stop the server. See Build from Source, Deployment and MemCP Console.

Key features

High performance
Parallel, batch-oriented query execution is designed for multicore CPUs, compact working sets and fast persistent storage, serving both OLTP and OLAP workloads.
Columnar storage
Data is stored by column for improved compression, a smaller memory footprint and fast analytical access.
Persistent in-memory operation
MemCP is designed to keep active data in memory while offering configurable per-table durability and persistence backends.
Fast configurable writes
Choose durability per table: safe protects committed data through power loss, while measured logged paths have reached about 10× its write throughput; sloppy batches reconstructible data into the normal 15-minute rebuild cycle.
Built-in APIs
SQL over HTTP and in-database services can remove an extra middleware hop for suitable applications.
Adaptive compression
Bit-packing, dictionary encoding and sequence compression reduce the bytes read for suitable data. Historical imports have reached reductions around 80% versus their MySQL/MariaDB representation; measure your own schema.
Simple deployment
Start with Docker, PM2 or the native binary. The compact application has historically had an installation footprint of approximately 10 MB.
Extensible frontends
The Go storage engine and embedded Scheme environment support SQL, RDF, REST and custom application interfaces.
Cost-based query execution
Logical decorrelation and join optimization are separated from cost-based physical selection of scans, indexes, RecSets, reusable caches and execution pipelines.
How MemCP plans and lowers queries → · How compact record sets process large domains →

Why MemCP?

Traditional relational databases were designed around spinning disks and comparatively small numbers of CPU cores. MemCP rethinks storage and query execution for modern multicore systems, large caches, fast storage and mixed workloads.

Typical use cases include:

  • real-time dashboards and analytics;
  • data-heavy SaaS platforms;
  • embedded systems with limited resources;
  • high-throughput OLTP/OLAP hybrids.

Whether MemCP is a good fit depends on the required SQL compatibility, durability, query mix, data size and operational environment. Review Supported SQL, Persistency and Performance Guarantees and Performance Measurement rather than treating benchmark figures as universal guarantees.

MemCP vs. MySQL

Feature MySQL MemCP
Storage model Primarily row-based Column-based and compressed
Performance focus General-purpose relational workloads Parallel, in-memory-oriented execution for mixed operational and analytical workloads
In-memory capability Available through selected engines and caching Central design goal and default operating model
REST API integration Normally external Built in
Installation footprint Common server installations are approximately 150 MB or larger The native application has historically been approximately 10 MB
Open source

MemCP provides MySQL protocol compatibility but does not claim to implement every MySQL feature. See Comparison: MemCP vs. MySQL for a detailed comparison and Database Tools compatibility with MemCP for client compatibility.

Architecture overview

Documentation

The following navigation remains on the start page so users and search engines can reach every major documentation area directly.

Introduction and evaluation

Getting started

Administration

Frontends

SQL frontend

RDF frontend

Custom frontends

Persistence backends and storage

Internals

How MemCP works

Scheme documentation

Optimizations

Further reading

Additional blog posts on design decisions, compression techniques and performance optimization are available on the Launix blog.

Community

MemCP is an open-source project maintained by developers for developers. Contributions are welcome in the form of bug reports, feature requests and pull requests.

See Contributing and the GitHub repository.