Code Monkey home page Code Monkey logo

piggysql's Introduction

PiggySQL - a relational database

  • DDL
    • Create
      • Create Table
      • Create Index
    • Drop
      • Drop Table
      • Drop Index
    • Alter
      • Add Column
      • Drop Column
  • DQL
    • Select
    • Where
    • Distinct
    • Aggregation: Count / Sum / Avg / Min / Max
    • Subquery
    • Join: Left / Right / Inner
    • Group By
    • Having
    • Order By
    • Limit
    • Explain
    • Join: Inner/Left/Right
    • Alias
    • SubQuery(from)
    • Show tables
  • DML
    • Insert
    • Update
    • Delete
  • IndexType
    • Primary Key
    • Unique Key
  • Concurrency Control
    • Transaction
      • Begin
      • Commit
      • Rollback
    • Isolation Level
      • Snapshot Isolation
      • Serializable Snapshot Isolation
    • Multi-Version Concurrency Control
  • Optimization
    • RBO
      • Predicate Pushdown
      • ConstFolder
      • Combine Filter
      • Coloumn Pruning
      • Limit Pushdown
      • Combine operator
  • Execution
    • Volcano
  • Net
    • PSQL Client
    • Rust CLI Client
    • Server
    • JDBC Driver (only a little)
  • Storage
    • BitCask variant(from toydb)
    • LSM variant (from mini-lsm)
    • Memory SkipMap (crossbeam-skiplist)
    • Sled

References

We have referred to the following excellent open-source database projects and express our gratitude for their work

Run PiggySQL

cargo run --release --bin piggysql

then run

psql 

or run my tiny client

to enter the postgres client

also connect to the database with JDBC (experimental)

Benchmark

clone the benchmark repo

git clone https://github.com/af8a2a/PiggyBenchmark

run the database

cargo run --release --bin piggysql

run the benchmark!

piggysql's People

Contributors

af8a2a avatar

Stargazers

 avatar  avatar  avatar Tangent avatar Eason Wang avatar wtsclwq avatar  avatar Kould avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.