relic

所属分类:数据库系统
开发工具:Clojure
文件大小:329KB
下载次数:0
上传日期:2023-01-13 20:45:10
上 传 者sh-1993
说明:  Clojure的函数关系编程(脚本)。
(Functional relational programming for Clojure(Script).)

文件列表:
CHANGELOG.md (1920, 2023-01-14)
LICENSE (1058, 2023-01-14)
cljs.html (446, 2023-01-14)
deploy-docs.sh (36, 2023-01-14)
dev (0, 2023-01-14)
dev\dev.clj (1844, 2023-01-14)
dev\examples (0, 2023-01-14)
dev\examples\cljidle (0, 2023-01-14)
dev\examples\cljidle\app.cljs (12547, 2023-01-14)
dev\examples\cljidle\index.html (333, 2023-01-14)
dev\examples\real_estate.clj (7604, 2023-01-14)
dev\examples\realworld (0, 2023-01-14)
dev\examples\realworld\backend.clj (20036, 2023-01-14)
dev\examples\realworld\frontend.cljs (21488, 2023-01-14)
dev\examples\realworld\index.html (742, 2023-01-14)
doc (0, 2023-01-14)
doc\agg.md (2062, 2023-01-14)
doc\aggregates.md (1197, 2023-01-14)
doc\any.md (588, 2023-01-14)
doc\avg.md (368, 2023-01-14)
doc\bottom-by.md (878, 2023-01-14)
doc\bottom.md (614, 2023-01-14)
doc\btree.md (1047, 2023-01-14)
doc\change-tracking.md (1636, 2023-01-14)
doc\check.md (882, 2023-01-14)
doc\const.md (283, 2023-01-14)
doc\constrain.md (532, 2023-01-14)
doc\constraints.md (1779, 2023-01-14)
doc\count-distinct.md (498, 2023-01-14)
doc\count.md (569, 2023-01-14)
doc\delete-exact.md (334, 2023-01-14)
doc\delete.md (478, 2023-01-14)
... ...

# relic ![tests](https://github.com/wotbrew/relic/actions/workflows/tests.yml/badge.svg) [![Clojars Project](https://img.shields.io/clojars/v/com.wotbrew/relic.svg)](https://clojars.org/com.wotbrew/relic) _status: alpha, major breaking changes unlikely, minor ones likely_ `relic` is a Clojure(Script) data structure that provides the functional relational programming model described by the [tar pit](http://curtclifton.net/papers/MoseleyMarks06a.pdf) paper. ## Why > The relational view (or model) of data ... appears to be superior in several respects to the graph or network model .... It provides a means of describing data with its natural structure only-that is, without superimposing any additional structure for machine representation purposes - Codd, A Relational Model of Data for Large Shared Data Banks ### Support for relational data representation Programming with maps becomes less ergonomic as soon as you have to deal with more than one collection of them at a time, so often they are over structured into trees that limit their use in different contexts. Normalized relations are a more principled way to represent our collections of maps. There are some tools for working with relations in `clojure.set`, and they help. But `clojure.set` has little to say about how groups of relations should be represented, and indexes are either created for each join, or not used at all. ### Declarative data processing Data processing pipelines [could be defined as queries](https://nchammas.com/writing/data-pipeline-materialized-view), a specification of the result rather than the steps - but you need mechanisms that can do this efficiently, particularly for partial updates. ### Declarative relational constraints It is often important to rule out invalid states, there are many tools for doing this to single maps or collections, but specifying constraints that exist in the space of relationships is often on the programmer to do manually. It'd be nice to have a constraint language which was [more like a query](https://nchammas.com/writing/query-language-constraint-language). ### Reactive programming In interactive applications, the system must respond to user input. You have the problem of invalidation - that is, how do you make sure dependent computations are re-run in response to the state of the program changing. re-frame does this with its subscriptions, but getting good performance if you have to invalidate say, an aggregate - is difficult and on you. ### Reducing accidental complexity `relic` is trying to reduce complexity, an experiment that allows you to program with normalized data, declarative query, constraints and data processing, and retain good-enough performance. ## Features - Fully featured in-memory database with indexed SQL style [query](https://www.wotbrew.com/relic/query). - Integrated and embedded in clojure, use clojure [functions](https://www.wotbrew.com/relic/expr) in queries, build queries with clojure. - [Materialized views](https://www.wotbrew.com/relic/materialization) with incremental maintenance. - Make invalid states illegal with [constraints](https://www.wotbrew.com/relic/constraints). - [Reactive](https://www.wotbrew.com/relic/change-tracking), allowing efficient integration with react, bind components to materialized queries and remain responsive at 60fps. `relic` only targets in-memory use cases, for this kind of thing at scale consider: [materialize](https://github.com/MaterializeInc/materialize). ## Installation With `leiningen` ```clojure [com.wotbrew/relic "0.1.5"] ``` With `clojure` (`deps.edn`) ```clojure com.wotbrew/relic {:mvn/version "0.1.5"} ``` ## Documentation See [documentation](https://www.wotbrew.com/relic) for a detailed reference. ## Pitch Do you suffer from _map fatigue_? [[1]](http://timothypratley.blogspot.com/2019/01/meander-answer-to-map-fatigue.html) ![despair](doc/tar2.png) Did you try [meander](https://github.com/noprompt/meander), [core.logic](https://github.com/clojure/core.logic), [datascript](https://github.com/tonsky/datascript) and every graph-map-database under the sun but still do not feel [out of the tar pit](http://curtclifton.net/papers/MoseleyMarks06a.pdf)? ![in the tar pit](doc/tar.jpeg) Are you tired of writing mechanical wiring and glue? That has *nothing* to do with your actual business logic? `relic` might help, but it's not a medical professional. It's a functional relational programming library. Definitely not at all like the other in-memory databases in clojure. This time it is different, really. ## Brief tour I like to use `rel` as an alias. ```clojure (require '[com.wotbrew.relic :as rel]) ``` This is a query, lets find some bob's. ```clojure [[:from :Customer] [:where [= :name "bob"]]] ``` You can refine queries by just adding elements to the vector. All your favorites are here, filtering (`:where`), computing columns (`:extend`), joins (`:join` & `:left-join`), grouping and aggregation (`:agg`) and more. ```clojure [[:from :Customer] [:where [= :name "bob"]] [:extend [:greeting [str "Hello, " :name "!"]]] ``` Because queries are just vectors, they just sort of lounge around being values. To put them to work we have to feed some data into relic. `relic` databases are boring clojure maps. Prepare yourself: ```clojure (def db {}) ``` See, boring. You manipulate your database with the [`transact`](https://www.wotbrew.com/relic/transact) function. This returns a new database with the transaction applied. Plain old functional programming, no surprises. ```clojure (def db (rel/transact {} [:insert :Customer {:name "bob"} {:name "alice"}]) db ;; => {:Customer #{{:name "bob"}, {:name "alice"}}} ``` Now we have some state, we can ask questions of relic, as you would a SQL database. ```clojure (rel/q db :Customer) ;; => ({:name "bob"}, {:name "alice"}) (rel/q db [[:from :Customer] [:where [= :name "bob"]]]) ;; => ({:name "bob"}) (rel/q db [[:from :Customer] [:agg [] [:avg-name-len [rel/avg [count :name]]]]]) ;; => ({:avg-name-len 4}) ``` Ok ok, neat but not _cool_. Ahhhh... but you don't understand, `relic` doesn't just evaluate queries like some kind of cave man technology - it is powered by a __data flow graph__. `relic` knows when your data changes, and it knows how to modify dependent relations in a smart way. You can materialize any query such that it will be maintained for you as you modify the database. In other words `relic` has __incremental materialized views__. ```clojure (rel/mat db [[:from :Customer] [:where [= :name "bob"]]]) ;; => returns the database, its value will be the same, but internally some machinery will have been allocated. {:Customer #{{:name "bob"}, {:name "alice"}}} ``` `mat` will return a new _database_, against which materialized queries will be instant, and __as you change data in tables, those changes will flow to materialized queries automatically.__ You can do more than query and materialize with relic, you can [react to changes](https://www.wotbrew.com/relic/change-tracking), use [constraints](https://www.wotbrew.com/relic/constraints) and [more](https://www.wotbrew.com/relic). If you read the tarpit paper, you might find this [real estate example](https://github.com/wotbrew/relic/blob/master/dev/examples/real_estate.clj) informative. Another example demonstrating usage in the browser can be found in [cljidle](https://github.com/wotbrew/relic/blob/master/dev/examples/cljidle). For further reading, see the [docs](https://www.wotbrew.com/relic). ## Related libraries - [core.logic](https://github.com/clojure/core.logic) - [datascript](https://github.com/tonsky/datascript) - [clara-rules](https://github.com/cernerel/clara-rules) - [odoyle-rules](https://github.com/oakes/odoyle-rules) - [fyra](https://github.com/yanatan16/fyra) - [meander](https://github.com/noprompt/meander) - [doxa](https://github.com/ribelo/doxa) - [clj-3df](https://github.com/sixthnormal/clj-3df) ## Thanks - [@bradb](https://github.com/bradb) for early sketch sessions - [@tom-riverford](https://github.com/tom-riverford) for indulging me - [@riverford](https://github.com/riverford) for being the greatest green grocers in devon that uses clojure ## LETS GO ![lets go](doc/tar3.png) `#relic` on clojurians Email and raise issues. PR welcome, ideas and discussion encouraged. ## License Copyright 2022 Dan Stone (wotbrew) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

近期下载者

相关文件


收藏者