RSSAmplifier

Alex Edwards · May 14, 2019

Using PostgreSQL JSONB with Go

0
Sign in to vote or save

This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.

PostgreSQL provides two JSON-related data types that you can use — JSON and JSONB . The principal differences are: JSON stores an exact copy of the JSON input. JSONB stores a binary representation of the JSON input. This makes it slower to insert but faster to query. It may change the key order, and will remove whitespace and delete duplicate keys. JSONB also supports the ? (existence) and…

Read on alexedwards.net

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.