changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > org > notes / query-lang.org

changeset 3: 36aaa0afe772
parent: 04e86b94ef1a
child: 812feca5a874
author: Richard Westhaver <ellis@rwest.io>
date: Thu, 06 Jun 2024 23:16:56 -0400
permissions: -rw-r--r--
description: add index
1 #+setupfile: ../clean.theme
2 This file is for notes on different query languages.
3 
4 Queries are extremely important in software development and having a
5 robust query engine is a must for CC.
6 
7 Our goal is to develop a query-language compiler (Q) which can be
8 tuned at compile-time to meet the needs of any database backend.
9 
10 The query languages that interest us most are derived from Prolog
11 (/datalog) and SQL, but we won't be supporting all of their features -
12 only the ones that can be reasonably coerced to all supported frontends.
13 
14 Q will require an Intermediate Representation (IR) - the encoding will
15 be based on S-expressions with a specialized reader.