├── README.md ├── core └── varint.go ├── delta ├── .gitignore ├── README.md └── main_test.go ├── go.mod ├── http-protocol ├── README.md └── main.go ├── seq-random ├── .gitignore ├── README.md ├── main.go └── plot-1.svg ├── utils └── fileio.go └── varint ├── README.md └── main_test.go /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/database-fundamentals/HEAD/README.md -------------------------------------------------------------------------------- /core/varint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/database-fundamentals/HEAD/core/varint.go -------------------------------------------------------------------------------- /delta/.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | -------------------------------------------------------------------------------- /delta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/database-fundamentals/HEAD/delta/README.md -------------------------------------------------------------------------------- /delta/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/database-fundamentals/HEAD/delta/main_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/arpitbbhayani/database-fundamentals 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /http-protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/database-fundamentals/HEAD/http-protocol/README.md -------------------------------------------------------------------------------- /http-protocol/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/database-fundamentals/HEAD/http-protocol/main.go -------------------------------------------------------------------------------- /seq-random/.gitignore: -------------------------------------------------------------------------------- 1 | data.txt 2 | -------------------------------------------------------------------------------- /seq-random/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/database-fundamentals/HEAD/seq-random/README.md -------------------------------------------------------------------------------- /seq-random/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/database-fundamentals/HEAD/seq-random/main.go -------------------------------------------------------------------------------- /seq-random/plot-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/database-fundamentals/HEAD/seq-random/plot-1.svg -------------------------------------------------------------------------------- /utils/fileio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/database-fundamentals/HEAD/utils/fileio.go -------------------------------------------------------------------------------- /varint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/database-fundamentals/HEAD/varint/README.md -------------------------------------------------------------------------------- /varint/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitbbhayani/database-fundamentals/HEAD/varint/main_test.go --------------------------------------------------------------------------------