Skip to content
This repository was archived by the owner on Mar 29, 2025. It is now read-only.

Adding support for RDB version <= 12 and refactoring #19

Merged
merged 35 commits into from
Mar 29, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
4d52810
Add new rdb version and datatypes
bimtauer Dec 19, 2024
865bea2
Begin port to clap and revised structure
bimtauer Dec 19, 2024
677b503
Refactor, fix previous test, add rust integration test
bimtauer Dec 19, 2024
40bea25
Introduce file output and simplify integration test
bimtauer Dec 19, 2024
a28198f
Change encoding of non ascii chars
bimtauer Dec 22, 2024
7b06391
Implement hash list pack
bimtauer Dec 22, 2024
4decc7b
Begin factoring out formatter from parser
bimtauer Dec 23, 2024
3e25fe5
Further refactor formatter
bimtauer Dec 23, 2024
2d11517
Fix tests for refactored json formatter, cleanup pending
bimtauer Dec 25, 2024
0633c9e
Refactor formatter, generic format method
bimtauer Dec 27, 2024
7aaf4ea
Implement skip for hash list pack
bimtauer Dec 27, 2024
8083786
Add integration tests for plain and protocol format
bimtauer Dec 27, 2024
f5c159b
Improve error handling
bimtauer Dec 27, 2024
036be25
Create protocol based integration test across versions
bimtauer Dec 29, 2024
e4bf3c2
Implement listpack handling, better errors, ensure that all previousl…
bimtauer Dec 29, 2024
0439a7b
Implement sorted set v2 and listpack encodings
bimtauer Dec 30, 2024
3115477
Add logging
bimtauer Dec 30, 2024
c0424ae
Small cleanup
bimtauer Dec 30, 2024
b16a169
Restructure code and public lib interface
bimtauer Jan 1, 2025
ca0cd68
Add python bindings
bimtauer Jan 2, 2025
bac656d
Update readme
bimtauer Jan 2, 2025
419a88c
Update changelog
bimtauer Jan 2, 2025
ead9e1a
Link changelog
bimtauer Jan 2, 2025
b7bcbb5
Fix start and end formatting
bimtauer Jan 2, 2025
fcdf100
Integrate shell script tests fully into rust integration tests
bimtauer Jan 2, 2025
8152adf
Remove makefile
bimtauer Jan 2, 2025
74b5836
Update ignore and rm python version
bimtauer Jan 2, 2025
361a432
Heed clippy's call
bimtauer Jan 2, 2025
279fce9
Add Rust CI workflow
bimtauer Jan 2, 2025
7a5bfac
Clean
bimtauer Jan 13, 2025
cd8a83a
Fix Redis Container Integration Test
bimtauer Jan 14, 2025
817f9b4
Adapt python CI
bimtauer Jan 14, 2025
ef4608a
Prep release
bimtauer Jan 14, 2025
2ce44ab
Removing token should use trusted publisher
bimtauer Jan 14, 2025
2a87c62
Rename python project
bimtauer Jan 15, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
/target
/Cargo.lock
/utils/pkg
/utils/src
/utils/rdb-rs
*.tar.gz
# Generated by Cargo
# will have compiled files and executables
debug/
target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# Python
.python-version
1 change: 0 additions & 1 deletion .python-version

This file was deleted.