Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
16eef7e6
Commit
16eef7e6
authored
Nov 03, 2014
by
Jo Liss
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos
parent
98d1ebff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
encoding.md
doc/encoding.md
+2
-2
rpc.md
doc/rpc.md
+1
-0
No files found.
doc/encoding.md
View file @
16eef7e6
...
...
@@ -115,8 +115,8 @@ Lists of structs use the smallest element size in which the struct can fit. So,
list of structs that each contain two
`UInt8`
fields and nothing else could be encoded with C = 3
(2-byte elements). A list of structs that each contain a single
`Text`
field would be encoded as
C = 6 (pointer elements). A list of structs that each contain a single
`Bool`
field would be
encoded using C = 1 (1-bit elements). A list structs which are each more than one word in size
must be
be
encoded using C = 7 (composite).
encoded using C = 1 (1-bit elements). A list
of
structs which are each more than one word in size
must be encoded using C = 7 (composite).
When C = 7, the elements of the list are fixed-width composite values -- usually, structs. In
this case, the list content is prefixed by a "tag" word that describes each individual element.
...
...
doc/rpc.md
View file @
16eef7e6
...
...
@@ -118,6 +118,7 @@ interface Filesystem {
{% endhighlight %}
We've now solved our latency problem... but at what cost?
*
We now have to implement path string manipulation, which is always a headache.
*
If someone wants to perform multiple operations on a file or directory, we now either have to
re-allocate resources for every call or we have to implement some sort of cache, which tends to
...
...
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