Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
34f184e
feat: add Parquet persistence support to Quickleaf cache
codephi Aug 21, 2025
bfcc863
feat: remove serde_json dependency and update parquet feature for imp…
codephi Aug 21, 2025
b3543dd
Implement SQLite persistence for Quickleaf cache
codephi Aug 21, 2025
d908645
feat: improve SQLite persistence configuration and error handling in …
codephi Aug 21, 2025
b7c91c4
Update dependencies and refactor TUI example
codephi Aug 21, 2025
4709c61
feat: remove obsolete benchmark files from the repository
codephi Aug 21, 2025
be1c81d
feat: update version to 0.4.0 and enhance README with persistence det…
codephi Aug 21, 2025
d41e9ed
feat: add persistence options with default TTL to Quickleaf cache
codephi Aug 21, 2025
ca655bf
feat: add complete example and documentation for cache with SQLite pe…
codephi Aug 21, 2025
6729094
feat: adicionar testes para recursos de persistência no cache
codephi Aug 21, 2025
4e4dc25
perf: Replace std::HashMap with hashbrown::HashMap
codephi Aug 21, 2025
8165042
docs: Add comprehensive benchmark results and test status to README
codephi Aug 21, 2025
9de4842
Refactor SQLite store and add benchmarks for Quickleaf cache
codephi Aug 21, 2025
c188b5a
remover: excluir o relatório de desempenho da migração para hashbrown…
codephi Aug 21, 2025
9f7c275
Implement optimized cache with IndexMap for efficient O(1) operations…
codephi Aug 21, 2025
cab75fc
feat(perf): implement quick win optimizations - phase 1
codephi Aug 21, 2025
ae2bf22
feat(cache): substituir HashMap por IndexMap para otimização de desem…
codephi Aug 21, 2025
b2df2b7
refactor(cache): simplificar verificação de expiração e remoção de it…
codephi Aug 21, 2025
db436ac
feat: Implement advanced optimizations for Quickleaf Cache
codephi Aug 22, 2025
155d785
Enhance README and remove benchmark results file
codephi Aug 22, 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
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
target
.vscode
.vscode
*.db
*.db-*
*tmp
*.tmp.rs
Loading