Skip to content
#

key-value

Here are 585 public repositories matching this topic...

rkd-msw
rkd-msw commented Apr 18, 2019

I'm using TLS on etcd 3.3.12 and have a mix of etcd proxies and masters. The proxies don't seem to honour the --cipher-suites setting, as it ends up with ECDHE-RSA-AES256-GCM-SHA384 despite --cipher-suites=TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 being set.

$ pgrep -laf /usr/bin/etcd
21968 /usr/bin/etcd --listen-client-urls https://0.0.0.0:4000 --adv
oliverlockwood
oliverlockwood commented Apr 1, 2020

On a sharded collection, if you try to create a custom index (e.g. hash index) with uniqueness, that doesn't include the sharding key (which by default is the autogenerated _key) then it will fail with an error like:

Index creation failed: shard key '_key' must be present in unique index

There's zero documentation that I could find around this, and it's fairly fundamental, since you can't

luca-moser
luca-moser commented Apr 14, 2020

The readme has a small section about how to tweak BadgerDB to consume less memory. However, the section doesn't really describe any of the parameters in depth or allow the reader to be able to make an educated guess on how much memory his/her BadgerDB instance will consume.

The reason I'm bringing this up is that we're heavily using BadgerDB in our software but the options around it feel like a

nonamewolf
nonamewolf commented Feb 14, 2020

(e.g - macOS):

  1. Create a section with installation steps:
  • brew install cmake autoconf libtool gcc automake openssl
  • export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig"
  1. Update README.MD
  2. Update build.sh(force linking openssl doesn't work anymore)

I've wasted a lot of time trying to resolve openssl dependency issue, by applying solutions which are not relevant any

hive
kaboc
kaboc commented Jan 31, 2020

Steps to Reproduce
See below.

Code sample
This is an extract from the Relationships section of hive docs.

void main() async {
  Hive.registerAdapter(PersonAdapter());
  var persons = await Hive.openBox<Person>('personsWithLists');
  persons.clear();
  
  var mario = Person('Mario');
  var luna = Person('Luna')

Improve this page

Add a description, image, and links to the key-value topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the key-value topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.