-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
128 lines (105 loc) · 2.06 KB
/
.gitignore
File metadata and controls
128 lines (105 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool
*.out
# Go workspace file
go.work
go.work.sum
# Dependency directories
vendor/
# IDE files
.vscode/
.idea/
*.swp
*.swo
*~
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Binary outputs
bin/
main
hypercache
# Log files
logs/*.log
logs/
# Data directories (cache persistence)
data/
node-*/
# Benchmark and test results
benchmark-results/
test-results/
# Cluster runtime files
cluster_pids.txt
*.pid
test-results/
# Temporary files
tmp/
temp/
# Environment files
.env
.env.local
# Docker volumes and data
docker-data/
# Grafana data
grafana/data/
# Coverage reports
coverage.out
coverage.html
# Debug files
debug
*.pprof
# Local configuration overrides
*-local.yaml
*-local.yml
local-*.yaml
local-*.yml
# Development and internal documentation files
docs/binary-protocol-specification.md
docs/concurrency-patterns-demo.go
docs/configuration-driven-multivm.md
docs/consistent-hashing-deep-dive.md
docs/context-examples.go
docs/cuckoo-filter-internals.md
docs/distributed-architecture-plan.md
docs/distributed-persistence-plan.md
docs/filter-integration-summary.md
docs/hash-ring-foundation-complete.md
docs/hash-ring-implementation-summary.md
docs/implementation-guide.md
docs/implementation-plan.md
docs/implementation-roadmap.md
docs/KNOWN_ISSUES.md
docs/logging-quick-guide.md
docs/memory-pressure-examples.go
docs/method-receiver-examples.go
docs/persistence-file-locations.md
docs/production-polish-roadmap.md
docs/raft-consensus-deep-dive.md
docs/redis-cli-testing-guide.md
docs/resp-protocol-specification.md
docs/session-overflow-scenario.go
# Binary File
./main
# Test Results
test-results/
# Benchmark Results
benchmark-results/
# Temporary analysis and validation documentation (generated during optimization)
UNIT_TEST_RESULTS.md
TESTING_FRAMEWORK_SUMMARY.md
CUCKOO_FILTER_VALIDATION.md
COMPLETE_UNIT_TESTING_FRAMEWORK.md
COMPLETE_UNIT_TEST_VALIDATION.md
REPOSITORY_CLEANUP_COMPLETE.md