Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
956f388
feat: implement hybrid cache architecture for repository cloning
fabiovincenzi Oct 10, 2025
cc49057
feat: add configurable cache limits via proxy.config.json
fabiovincenzi Oct 10, 2025
d6413ce
test: update clearBareClone tests for hybrid cache structure
fabiovincenzi Oct 10, 2025
cf76665
chore: fix metric logging
fabiovincenzi Oct 10, 2025
e998d07
Merge branch 'main' into feature/hybrid-cache
fabiovincenzi Oct 13, 2025
734621c
Merge branch 'main' into feature/hybrid-cache
fabiovincenzi Oct 20, 2025
452eb18
Merge branch 'main' into feature/hybrid-cache
fabiovincenzi Oct 20, 2025
168d9b0
feat: implement git-operations module with native git commands
fabiovincenzi Oct 22, 2025
08116ba
refactor: update pullRemote to use git-operations module
fabiovincenzi Oct 22, 2025
992c862
test: add comprehensive hybrid cache integration tests
fabiovincenzi Oct 22, 2025
d5e1b5b
chore: remove unused isomorphic-git dependency
fabiovincenzi Oct 22, 2025
6d5f886
Merge branch 'feature/hybrid-cache' of https://github.com/fabiovincen…
fabiovincenzi Oct 22, 2025
6bc0ddc
Merge branch 'main' into feature/hybrid-cache
fabiovincenzi Oct 22, 2025
627137b
Merge branch 'main' into feature/hybrid-cache
fabiovincenzi Oct 27, 2025
235e152
chore: remove redundant cache config fallback
fabiovincenzi Oct 27, 2025
c762b5e
refactor: use bytes internally in CacheManager for consistency
fabiovincenzi Oct 27, 2025
ab28d78
chore: use toSorted()
fabiovincenzi Oct 27, 2025
88bbce8
refactor: remove test-only cleanup, rely on CacheManager limits
fabiovincenzi Oct 27, 2025
1737bfd
refactor: use spawnSync instead of execSync
fabiovincenzi Oct 27, 2025
d35d109
test: increase timeout for git clone tests in ConfigLoader
fabiovincenzi Oct 27, 2025
0a54773
perf: use performance.now() instead of Date.now()
fabiovincenzi Oct 27, 2025
133e5e6
refactor: use cache paths from configuration
fabiovincenzi Oct 27, 2025
f03d686
feat: add mutex to prevent race conditions in cache operations
fabiovincenzi Oct 29, 2025
bc0be9f
perf: remove unnecessary sort from getCacheStats
fabiovincenzi Oct 29, 2025
d07ed9c
fix: add logging for silent errors in getDirectorySize
fabiovincenzi Oct 29, 2025
2acaee7
refactor: rename cacheDir to repoCacheDir to disambiguate from Config…
fabiovincenzi Oct 29, 2025
49695ff
Merge branch 'main' into feature/hybrid-cache
fabiovincenzi Oct 29, 2025
b5bc3d8
refactor: rename cacheDir to repoCacheDir to disambiguate from Config…
fabiovincenzi Oct 29, 2025
d110463
Merge branch 'feature/hybrid-cache' of https://github.com/fabiovincen…
fabiovincenzi Oct 29, 2025
b073eb3
docs: add readme and cache benchmark script
fabiovincenzi Oct 31, 2025
928846d
Merge branch 'main' into feature/hybrid-cache
fabiovincenzi Oct 31, 2025
5b94ec9
chore: add results csv to gitignore
fabiovincenzi Nov 5, 2025
7c05bfb
chore: move and edit benchmark script
fabiovincenzi Nov 5, 2025
a42bd2e
refactor: use multiplier for speed improvement
fabiovincenzi Nov 5, 2025
fd23676
Merge branch 'main' into feature/hybrid-cache
fabiovincenzi Nov 5, 2025
bd14e59
Merge branch 'main' into feature/hybrid-cache
fabiovincenzi Nov 5, 2025
e67ff36
Merge branch 'main' into feature/hybrid-cache
fabiovincenzi Nov 7, 2025
7e97d9e
Merge branch 'main' into feature/hybrid-cache
fabiovincenzi Nov 17, 2025
604055c
Merge upstream/main into feature/hybrid-cache
fabiovincenzi Jan 12, 2026
fa2900e
Merge branch 'main' into feature/hybrid-cache
fabiovincenzi Jan 20, 2026
9c7e61e
Merge remote-tracking branch 'upstream/main' into feature/hybrid-cache
fabiovincenzi Feb 4, 2026
a563cfe
refactor: convert tests
fabiovincenzi Feb 4, 2026
6aab44f
chore: remove isomorphic-git
fabiovincenzi Feb 4, 2026
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -275,3 +275,7 @@ website/.docusaurus

# Generated from testing
/test/fixtures/test-package/package-lock.json

# Benchmark results
benchmark-detailed-*/
results*.csv
20 changes: 20 additions & 0 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,26 @@
}
}
}
},
"cache": {
"description": "Configuration for bare repository cache (hybrid cache system)",
"type": "object",
"properties": {
"maxSizeGB": {
"type": "number",
"description": "Maximum cache size in gigabytes (default 2GB)"
},
"maxRepositories": {
"type": "number",
"description": "Maximum number of repositories in cache (default 50)"
},
"cacheDir": {
"type": "string",
"description": "Directory path for bare repository cache (default ./.remote/cache)"
}
},
"required": ["maxSizeGB", "maxRepositories", "cacheDir"],
"additionalProperties": false
}
},
"definitions": {
Expand Down
Loading
Loading