Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
d1acdf85
Commit
d1acdf85
authored
Jul 25, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
16f6f214
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
go/zodb/zodb.go
go/zodb/zodb.go
+11
-4
go/zodb/zodbpy.go
go/zodb/zodbpy.go
+2
-0
No files found.
go/zodb/zodb.go
View file @
d1acdf85
...
...
@@ -31,7 +31,7 @@
// several objects and also has metadata, like user and description, associated
// with it. If an object is changed by transaction, it is said that there is
// revision of the object with particular object state committed by that transaction.
// Object revision is the same as tid of transaction that modified the object.
// Object revision is the same as tid of t
he t
ransaction that modified the object.
// The combination of object identifier and particular revision (serial)
// uniquely addresses corresponding data record.
//
...
...
@@ -48,11 +48,18 @@
// pickles in ZODB/py world.
//
//
// Operations
// Storage layer
//
// The storage layer provides access to a ZODB database in terms of database
// records with raw bytes for payload.
//
// At storage level a ZODB database can be opened with OpenStorage. Once opened
// IStorage interface is returned that represents access to the database. Please
// see documentation of IStorage, and other interfaces it embeds, for details.
// IStorage interface is returned that represents access to the database.
// Operations at storage layer work with raw-bytes buffers. Please see
// documentation of IStorage, and other interfaces it embeds, for details.
//
//
// Application layer
//
// XXX DB + Connection.
//
...
...
go/zodb/zodbpy.go
View file @
d1acdf85
...
...
@@ -14,6 +14,8 @@
package
zodb
// Support for python objects/data in ZODB.
// XXX + PyData.referencesf ?
import
(
"context"
"fmt"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment