並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 11 件 / 11件

新着順 人気順

serializationの検索結果1 - 11 件 / 11件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

serializationに関するエントリは11件あります。 開発qiitadb などが関連タグです。 人気エントリには 『Jetpack DataStoreをProtobufではなくKotlin Serializationで使用する』などがあります。
  • Jetpack DataStoreをProtobufではなくKotlin Serializationで使用する

    はじめに この記事は、Android Advent Calendar 2020の15日目の記事です。 本記事では、AndroidX DataStoreを、Protocol Buffersを利用せず、Kotlin Serializationと組み合わせ使う方法を紹介します。 Google公式の紹介記事 (2020-04-20 追記) DataStoreをKotlin Serializationと組み合わせて使う方法について、Android Developersの以下の記事でも紹介されています。 Using DataStore With Kotlin Serialization 日本語版: Android Developers Japan Blog: DataStore と Kotlin のシリアル化を併用する 要約 AndroidX Proto DataStoreは、必ずしもProtocol

      Jetpack DataStoreをProtobufではなくKotlin Serializationで使用する
    • GitHub - betwixt-labs/bebop: 🎷No ceremony, just code. Blazing fast, typesafe binary serialization.

      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

        GitHub - betwixt-labs/bebop: 🎷No ceremony, just code. Blazing fast, typesafe binary serialization.
      • GitHub - apache/incubator-fury: A blazingly fast multi-language serialization framework powered by JIT and zero-copy.

        Multiple languages: Java/Python/C++/Golang/JavaScript/Rust/Scala/TypeScript. Zero-copy: Cross-language out-of-band serialization inspired by pickle5 and off-heap read/write. High performance: A highly-extensible JIT framework to generate serializer code at runtime in an async multi-thread way to speed serialization, providing 20-170x speed up by: reduce memory access by inlining variables in gener

          GitHub - apache/incubator-fury: A blazingly fast multi-language serialization framework powered by JIT and zero-copy.
        • GitHub - inkeliz/karmem: Karmem is a fast binary serialization format, faster than Google Flatbuffers and optimized for TinyGo and WASM.

          Karmem was create to solve one single issue: make easy to transfer data between WebAssembly host and guest. While still portable for non-WebAssembly languages. We are experimenting with an "event-command pattern" between wasm-host and wasm-guest in one project, but sharing data is very expensive, and FFI calls are not cheap either. Karmem encodes once and shares the same content with multiple gues

            GitHub - inkeliz/karmem: Karmem is a fast binary serialization format, faster than Google Flatbuffers and optimized for TinyGo and WASM.
          • Serialization in Kotlin World

            shibuya.apk#38 KotlinConf 2019 で発表された Design of Kotlin Serialization をベースに、kotlinx.serialization を紹介しました

              Serialization in Kotlin World
            • .NET Serialization Roundup 2022

              The last test is from 2019 which is still accurate but the world is changing and we have arrived at .NET 7.0 which is reason enough to spin up my test suite again and measure from .NET 4.8, 3.1, 5.0, 6.0 up to 7.0. The “old” articles are still relevant despite their age. https://aloiskraus.wordpress.com/2019/09/29/net-serialization-benchmark-2019-roundup/ https://aloiskraus.wordpress.com/2018/05/0

                .NET Serialization Roundup 2022
              • RailsでのJSON Serializationをもっと簡単にやる - STORES Product Blog

                この記事は STORES Advent Calendar 2023 の30日目の記事です。 はじめに STORES 予約でエンジニアをしている望月です。 近年、Webアプリケーションのフロントエンド開発において、Reactなどのモダンな技術がリッチなユーザーインターフェースの実現を目指して頻繁に採用されるようになりました。 これに伴いRailsアプリケーションの開発方法も変化しています。 従来のRailsによるView層でのフロントエンド実装から脱却し、Railsは主にAPIサーバーとしての役割を果たす構成が増えてきました。 Railsを基盤に構築されているSTORES 予約でも、従来のRailsのView層の代わりにNext.jsを用いたフロントエンドのリニューアルが進行中で、バックエンドのRailsはAPIサーバーとしてのJSONによるリクエスト処理に注力しつつあります。 今回は、Ra

                  RailsでのJSON Serializationをもっと簡単にやる - STORES Product Blog
                • Overview of Serialization Technologies

                  Overview of Serialization Technologies Jim Pivarski Princeton University – DIANA-HEP March 28, 2018 1 / 24 45 years of serialization formats in (and out of) HEP 1970 1980 1990 2000 2010 2020 ZEBRA (1983) YBOS (CDF r1) ZOO proposal (1994) Objectivity (c.1994‒1998) HYDRA (1973) ZBOOK (1974) BOS (1975) ROOT (1995) CWN in PAW (1989) FORTRAN C++ MonetDB (2002) C-Store (2005) Dremel (2010) Parquet (2013

                  • .NET Serialization Benchmark 2019 Roundup

                    New Additions since 2018 are Apex, SimdJsonSharp, Utf8Json and JsonSerializer which comes with .NET Core 3. Test Execution You can clone my Serializer Testing Framework: https://github.com/Alois-xx/SerializerTests and compile it. Then execute RunAll.cmd from the SerializerTests directory which will execute the tests on .NET Framework and .NET Core 3.  I have put the output directory above the sour

                      .NET Serialization Benchmark 2019 Roundup
                    • GitHub - j8r/con: A simple, fast and readable JSON-compatible serialization format

                      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

                        GitHub - j8r/con: A simple, fast and readable JSON-compatible serialization format
                      • 【Kotlin】kotlinx.serializationを使ってjson parseをやってみる - Qiita

                        kotlinx.serializationとは Kotlin serialization consists of a compiler plugin, that generates visitor code for serializable classes, runtime library with core serialization API and JSON format, and support libraries with ProtoBuf, CBOR and properties formats. Serialize可能なクラスのvisitor codeを生成するコンパイラプラグインとcore serialization APIおよびJSON形式のランタイムライブラリで構成している。 つまり、Kotlinで作られたSerializerということですね。 また、そのほかの特徴として

                          【Kotlin】kotlinx.serializationを使ってjson parseをやってみる - Qiita
                        1

                        新着記事