project-m36: Relational Algebra Engine

[ library, mit, program, public-domain, relational-algebra ] [ Propose Tags ]

A relational algebra engine which can be used to persist and query Haskell data types.


[Skip to Readme]

Modules

[Index] [Quick Jump]

Flags

Manual Flags

NameDescriptionDefault
profiler

Enable Haskell-specific profiling support

Disabled
stack

build with stack and stackage

Disabled
haskell-scripting

enables Haskell scripting which links against GHC as a library

Enabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1, 0.2, 0.3, 0.4, 0.5, 0.5.1, 0.6, 0.7, 0.8, 0.8.1, 0.9.0, 0.9.4, 0.9.5, 0.9.6, 0.9.7, 0.9.8, 0.9.9
Change log Changelog.markdown
Dependencies aeson (>=1.1), attoparsec, base (>=4.8 && <4.15), base64-bytestring, binary, blaze-html, bytestring, Cabal, cassava (>=0.4.5.1 && <0.6), conduit, containers, cryptohash-sha256, data-interval, deepseq, deepseq-generics, deferred-folds, directory, distributed-process (>=0.7.4), distributed-process-async (>=0.2.4.1), distributed-process-client-server (>=0.2.3), distributed-process-extras (>=0.3.2), either, exceptions, extended-reals, filepath, foldl, ghc (>=8.2 && <8.11), ghc-boot, ghc-paths, ghci, Glob, gnuplot, hashable, hashable-time, haskeline, http-api-data, http-types, HUnit, list-t, megaparsec (>=5.2.0 && <9), monad-parallel, MonadRandom, mtl, network-transport, network-transport-tcp (>=0.6.0), old-locale, optparse-applicative, parallel, parser-combinators, path-pieces, project-m36, QuickCheck, quickcheck-instances, random, random-shuffle, resourcet, rset, scotty, semigroups, stm, stm-containers (>=1.0.0), template-haskell, temporary, text, text-manipulate (>=0.2.0.1 && <0.3), time, transformers, unix, unordered-containers, uuid (>=1.3.12), vector, vector-binary-instances, websockets, Win32 (>=2.5.4.1), zlib [details]
License LicenseRef-PublicDomain
Author AgentM
Maintainer agentm@themactionfaction.com
Category Relational Algebra
Home page https://github.com/agentm/project-m36
Bug tracker https://github.com/agentm/project-m36/issues
Source repo head: git clone https://github.com/agentm/project-m36
Uploaded by agentm at 2020-10-11T02:09:32Z
Distributions
Executables handles, project-m36-websocket-server, Example-DerivingCustomTupleable, Example-CustomTupleable, Example-Hair, Example-Blog, Example-OutOfTheTarpit, Example-SimpleClient, bigrel, project-m36-server, tutd
Downloads 5096 total (36 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user [build log]
All reported builds failed as of 2020-10-11 [all 2 reports]

Readme for project-m36-0.8.1

[back to package description]

Ξ Project:M36 Relational Algebra Engine

Haskell Programming Language Public Domain Hackage Hackage dependency status Build status Windows Build status Github Workflow status

Software can always be made faster, but rarely can it be made more correct.

Introduction

Project:M36 implements a relational algebra engine as inspired by the writings of Chris Date.

Quick Install

Project:M36 can be downloaded and run via docker, which supports Windows 10, macOS, and Linux.

Run docker run -it projectm36/project-m36 tutd to start the TutorialD command line interface.

Description

Unlike most database management systems (DBMS), Project:M36 is opinionated software which adheres strictly to the mathematics of the relational algebra. The purpose of this adherence is to prove that software which implements mathematically-sound design principles reaps benefits in the form of code clarity, consistency, performance, and future-proofing.

Project:M36 can be used as an in-process or remote DBMS.

Project:M36 is written entirely in the Haskell programming language.

Sample Session

asciicast

Use-Cases

Project:M36 supports multiple frontends which target different audiences.

  • learn about the relational algebra via TutorialD
  • store and manipulate databases
  • use Project:M36 as a native Haskell database backend

Community

Documentation

Introductory Materials

  1. Installation and Introduction to Project:M36
  2. Introduction to the Relational Algebra
  3. TutorialD Cheatsheet
  4. TutorialD via Jupyter Notebook Walkthrough
  5. TutorialD Tutorial
  6. 15 Minute Tutorial
  7. Developer's Change Log
  8. Simple Client API
  9. CSV Import/Export

Database Comparisons

  1. ACID Database Properties
  2. On NULL (in SQL)
  3. Reaching "Out of the Tarpit" with Project:M36
  4. An Architecture for Data Independence

Advanced Features

  1. Transaction Graph Operators
  2. ProjectM36.Client Library
  3. Data Frames for Sorting
  4. Adding New Data Types
  5. Database-Manipulating Functions
  6. Serving Remote ProjectM36 Databases
  7. Using Notifications
  8. Merge Transactions
  9. Atom (Value) Functions
  10. Trans-Graph Relational Expressions
  11. Isomorphic Schemas
  12. Replication
  13. Basic Operator Benchmarks
  14. Merkle Transaction Hashes

Integrations

  1. WebSocket Server
  2. Jupyter Notebook Kernel
  3. Persistent Driver

Development

Project:M36 is developed in Haskell and compiled with GHC 8.2.2 or later.

  • The Third Manifesto: the philosophical basis for relational algebra engines
  • Rel: a TutorialD implementation against a BerkeleyDB backend
  • Andl: a new database language with SQLite and PostgreSQL backends
  • Coddie: a python-based relational algebra interpreter

Suggested Reading