6 Matching Annotations
- Sep 2022
-
www.rfc-editor.org www.rfc-editor.org
-
However, links between resources need not be format specific; it can be useful to have typed links that are independent of their serialisation, especially when a resource has representations in multiple formats.
-
- May 2021
-
grpc.io grpc.io
-
gRPC can use protocol buffers as both its Interface Definition Language (IDL) and as its underlying message interchange format
-
-
-
protocol buffers as the Interface Definition Language (IDL) for describing both the service interface and the structure of the payload messages.
-
-
-
This improves serialization and deserialization times
Tags
Annotators
URL
-
- Dec 2020
-
stackoverflow.com stackoverflow.com
-
class Session extends Map { set(id, value) { if (typeof value === 'object') value = JSON.stringify(value); sessionStorage.setItem(id, value); } get(id) { const value = sessionStorage.getItem(id); try { return JSON.parse(value); } catch (e) { return value; } } }
-
-
sapper.svelte.dev sapper.svelte.dev
-
When Sapper renders a page on the server, it will attempt to serialize the resolved value (using devalue) and include it on the page, so that the client doesn't also need to call preload upon initialization.
-