Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Ruby Pg | 713 | 281,709 | 2,192 | 8 days ago | 84 | June 24, 2022 | 14 | other | C | |
A PostgreSQL client library for Ruby | ||||||||||
Pgproto3 | 120 | 2,122 | a year ago | 27 | September 17, 2022 | 2 | mit | Go | ||
Decoderbufs | 113 | 5 years ago | 2 | mit | C | |||||
INACTIVE: A PostgreSQL logical decoder output plugin to deliver data as Protocol Buffers | ||||||||||
Pgwire | 56 | 4 months ago | 11 | March 28, 2021 | 8 | mit | JavaScript | |||
PostgreSQL client library for Deno and Node.js that exposes all features of wire protocol. | ||||||||||
Decoder_json | 26 | 7 years ago | unlicense | C | ||||||
PostgreSQL logical decoder to JSON | ||||||||||
Hstore Extension | 16 | 8 months ago | 4 | July 24, 2019 | 1 | mit | PHP | |||
The encoder/decoder and set of the doctrine functions for the postgresql type `hstore` | ||||||||||
Cpghstore | 5 | 8 years ago | 1 | April 03, 2012 | 2 | Python | ||||
cpghstore is a fast decoder/encoder of the PostgreSQL hstore data type. | ||||||||||
Parselogical | 3 | 6 years ago | Go | |||||||
Parse the output of Postgres' logical test_decoder. | ||||||||||
Pg_replicatelogical | 3 | 6 years ago | Go | |||||||
Replicate DBs using Postgres' built-in test_decoder logical replication plugin. | ||||||||||
Baan Utf T Decoder | 2 | 3 years ago | lgpl-3.0 | C | ||||||
Decoding UTF-T texts in PostgreSQL |
PostgreSQL module hstore
allows to store sets of key/value pairs within a single PostgreSQL value. More about it here.
The HStore Extension contains DBAL type hstore
and registers Doctrine type hstore
.
To install this library, run the command below and you will get the latest version:
composer require intaro/hstore-extension
If you want to run the tests:
./vendor/bin/phpunit
You can find an example configuration for using HStore extension in Symfony2 in config/hstore.yml.
You can just include in you config.yml
:
imports:
- { resource: ../../vendor/intaro/hstore-extension/config/hstore.yml }
To speed up encoding/decoding of strings you can install C extension shipped in ext/hstore
directory.
To compile extension you must install php-dev package.
phpize
./configure
make
sudo make install
Finally, enable the extension in your php.ini
configuration file:
extension = hstore.so