Giter Site home page Giter Site logo

Comments (2)

cabo avatar cabo commented on July 30, 2024

Hi Arvid,

let's first distinguish indefinite length strings (which are a construct build on top of definite length strings) from indefinite length containers (arrays, maps). I think you are talking about the latter.

There are two reasons why definite length containers may be the better choice:

  • For containers with less than 24 elements/entries, definite length is one byte shorter. You may not care about that much, but for data that use large amounts of small arrays, that can make a difference.
  • The decoder knows about the size (number of elements/entries) right from the start. That may be an indication that the container is too large, but the more interesting case is when that early size information allows you to decode data that is in the container in a more efficient way (e.g., when you can allocate the right application data structure at the right size).

If these are not important to you, be our collective guest and go indefinite as much as you want -- that's why that is in there.
(Unless you need deterministic encoding, which is biased towards definite, but of course you can define your own deterministic encoding rules.)

from cbor.github.io.

aep avatar aep commented on July 30, 2024

thanks,

maybe found the answer in msgpack/msgpack#128 (comment)
That is some languages require realloc on array append, which might copy, so that's alot slower than a known size alloc.

curious why protobuf opted for not sizing arrays at all tho

from cbor.github.io.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.