index
:
dedo
main
Unnamed repository; edit this file 'description' to name the repository.
External SSH Git service user
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
src/dedo.go: Use `ExitIf()` from gobang
HEAD
main
EuAndreh
2025-05-06
1
-3
/
+1
*
src/dedo.go: (Re) Add API that allows external control of the transaction
EuAndreh
2025-02-21
1
-41
/
+94
*
src/dedo.go: Add separate read and read-write ROCursorI and RWCursorI types
EuAndreh
2025-02-19
1
-21
/
+51
*
src/dedo.go: Add strict separation between ROBucketI and RWBucketI
EuAndreh
2025-02-19
1
-37
/
+93
*
src/dedo.go: Add public ID2Bytes() and Bytes2ID() functions
EuAndreh
2025-02-17
1
-4
/
+8
*
src/dedo.go: Add DatabaseI.OnCommit()
EuAndreh
2025-02-13
1
-21
/
+34
*
src/dedo.go: Evolve implementation of inMemoryDatabaseI
EuAndreh
2025-02-13
1
-57
/
+246
*
src/dedo.go: Include CreateBucketIfNotExists() in BucketI
EuAndreh
2025-02-13
1
-2
/
+3
*
src/dedo.go: Include NextID() in BucketI
EuAndreh
2025-02-13
1
-0
/
+1
*
src/dedo.go: Allow x.Bucket() to also return an error
EuAndreh
2025-02-12
1
-29
/
+41
*
src/dedo.go: Remove *bucketT appearance from public API
EuAndreh
2025-02-10
1
-30
/
+46
*
src/dedo.go: Remove *cursorT appearance from public API
EuAndreh
2025-02-10
1
-3
/
+8
*
src/dedo.go: Move implementation of Tx public methods into private functions
EuAndreh
2025-02-10
1
-10
/
+46
*
src/dedo.go: Move implementation of Cursor public methods into private functions
EuAndreh
2025-02-10
1
-6
/
+29
*
src/dedo.go: Move implementation of Bucket public methods into private functions
EuAndreh
2025-02-10
1
-11
/
+55
*
src/dedo.go: Rename bucket "for-each-page" function/methods
EuAndreh
2025-02-10
1
-6
/
+7
*
src/dedo.go: Remove unused bucket.forEachPage() method
EuAndreh
2025-02-10
1
-13
/
+0
*
src/dedo.go: Simple rename from DB to databaseT
EuAndreh
2025-02-10
1
-62
/
+62
*
src/dedo.go: Remove duplicate code of bucketT.NextID()
EuAndreh
2025-02-10
1
-14
/
+4
*
src/dedo.go: Simple rename Cursor -> cursorT
EuAndreh
2025-02-10
1
-43
/
+43
*
src/dedo.go: Simple rename Bucket -> bucketT
EuAndreh
2025-02-10
1
-81
/
+81
*
src/dedo.go: Remove separate RO concrete structs - snapshotT, roBucketT
EuAndreh
2025-02-10
1
-35
/
+0
*
src/dedo.go: Introduce roBucketT type
EuAndreh
2025-02-09
1
-7
/
+11
*
src/dedo.go: Introduce snapshotT type
EuAndreh
2025-02-09
1
-0
/
+31
*
src/dedo.go: Move transactionT to the beginning of the file
EuAndreh
2025-02-09
1
-18
/
+18
*
src/dedo.go: Simple renames - beginRWTx->beginTransaction, beginTx->beginSnap...
EuAndreh
2025-02-09
1
-4
/
+4
*
src/dedo.go: Simple rename of Tx to transactionT
EuAndreh
2025-02-09
1
-56
/
+56
*
src/dedo.go: Move public interfaces to the beginning of the file
EuAndreh
2025-02-09
1
-30
/
+30
*
src/dedo.go: Replace usage of empty `interface{}` with `any`
EuAndreh
2025-02-09
1
-2
/
+2
*
src/dedo.go: Add Bucket.NextID() that returns []bytes instead of uint64
EuAndreh
2025-02-09
1
-0
/
+25
*
src/dedo.go: Rename DedoI -> DatabaseI
EuAndreh
2025-02-08
1
-10
/
+10
*
src/dedo.go: Comment implementation of InMemory
EuAndreh
2025-02-07
1
-0
/
+2
*
src/dedo.go: Inline code of db.begin()
EuAndreh
2025-02-07
1
-9
/
+2
*
src/dedo.go: Make SnapshotI a subset of TransactionI
EuAndreh
2025-02-07
1
-11
/
+9
*
src/dedo.go: Rename TxI -> TransactionI
EuAndreh
2025-02-07
1
-11
/
+13
*
src/dedo.go: Rename IDedo -> DedoI, ITx -> TxI
EuAndreh
2025-02-07
1
-20
/
+20
*
src/dedo.go: Introduce SnapshotI type
EuAndreh
2025-02-07
1
-10
/
+17
*
src/dedo.go: Introduce inMemoryTx
EuAndreh
2025-02-07
1
-7
/
+89
*
src/dedo.go: Introduce ITx interface
EuAndreh
2025-02-06
1
-15
/
+31
*
src/dedo.go: Start implementation of in-memory variation
EuAndreh
2025-02-06
1
-0
/
+29
*
src/dedo.go: Replace concrete *DB type with IDedo interface
EuAndreh
2025-02-06
1
-8
/
+15
*
src/dedo.go: Remove AllocSize from DB type
EuAndreh
2025-02-06
1
-6
/
+6
*
src/dedo.go: Remove StrictMode field from DB type
EuAndreh
2025-02-06
1
-24
/
+0
*
tests/dedo.go: Add tests for usage(), getGetopt() and setGetopt()
EuAndreh
2025-02-06
1
-1
/
+1
*
src/dedo.go: Parameterize the file "magic" byte markers
EuAndreh
2025-01-30
1
-13
/
+27
*
tests/dedo.go: Add tests for getopt() and runCommand()
EuAndreh
2025-01-27
1
-1
/
+1
*
src/dedo.go: Add "rm" command
EuAndreh
2025-01-25
1
-0
/
+16
*
src/dedo.go: Remove public PageInfo type
EuAndreh
2025-01-25
1
-8
/
+0
*
src/dedo.go: Remove Tx.CopyFile() and Tx.Page() public functions
EuAndreh
2025-01-25
1
-44
/
+0
*
src/dedo.go: Remove public Cursor.Bucket() and Tx.DB() public functions
EuAndreh
2025-01-25
1
-10
/
+0
[next]