Some(void) :rust: · @voided
101 followers · 467 posts · Server hachyderm.io

Reading the message pack spec and am I correct in assuming that a map can have any key type as well as any value type and mix them in the same map?

#programming #msgpack

Last updated 2 years ago

Wayne Werner · @ketmorco
396 followers · 4290 posts · Server fosstodon.org

Emails over and would certainly be something 😂

#msgpack #zmq #zeromq

Last updated 2 years ago

Blake Leonard · @blake
76 followers · 684 posts · Server fosstodon.org

@gotofritz Protobuf's main flaw for the XMPP use case is total lack of extensibility. For stuff like push notifications, I think and might be better choices, and I think is using at least WebSockets.

#websockets #msgpack #ntfy

Last updated 3 years ago

zetroot · @zetroot
4 followers · 49 posts · Server lor.sh

@naia and are not "databases", it is just a serialization formats, so you can save data from your object model in files, transfer it between applications and so on.
What do you need essentially? Saving data to disk to read it back later? Or do you need real database features, like indexes and reference integrity?
If you need to save data somewhere and read it back later - have a look at binary serialization methods: Protocol Buffers (), Message Pack (). They are extremely fast and compact, comparing to json and xml, but are not human-readable.
In case you need database features, but do not want to deal with all this enterprise stuff like MS SQL and Oracle, take . It is compact, file-based (serverless) relational database, that can be embedded into your application. That's why it is popular in mobile applications. If you are looking for something more multiuser and multithreading - should be a good choice. It is cool database, that can be used in project of every size: a small pet project, MVP to start your startup in garage and enterprise application serving hundreds RPS 24/7/365. It is a bit more complex that sqlite, but it is still easy to start, has great docs, big community and excellent documentation.

#xml #json #protobuf #msgpack #sqlite #postgresql

Last updated 3 years ago