fdb 6.2.0 → 6.2.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/fdboptions.rb +2 -0
  3. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 47992c364264d8f965cf613fca1d6c810cff9434
4
- data.tar.gz: '076328f3d2bac06bcfbcfade01fdcc84f3a6c670'
3
+ metadata.gz: b4b7bde1646ded4ef3a56764d18cd5852f10b5b1
4
+ data.tar.gz: 571d53b43babca6c52d155575c9cfa03110289d7
5
5
  SHA512:
6
- metadata.gz: 1fa711743166c035dcfd073e687fbd1fad55da60e1be13f2195d1850f190079fc8b8e44bacebb34e1e7f2de9330e5204dfb5fb956f14a9731015416e05f66cbd
7
- data.tar.gz: 1b1cff2b3a35bb8d59a7c6a2798c62a8c7e7aa2f201af83dd4b9eaec3ccf0715210c6025a25dc03f61ba3df7965f719e763f87d199efd58ec461a60b4ae4bed3
6
+ metadata.gz: 47ce81b434b47b3eaa07b415f65ca2e6e4c52bb9f7f6475e4bb446f8026379c5437bbfb70835d6d484db0e119dcc61716bcf1cfd9a1e8ec5afecf79249e17a86
7
+ data.tar.gz: 0f183a68bb33268ce813ae36a982c28b01d7f710154bfa38274c1b4db1fc918f0f70b8456c9fedec731b0df1ecba5606b420e3985348f8c1cdd8313429ca7193
data/lib/fdboptions.rb CHANGED
@@ -71,12 +71,14 @@ module FDB
71
71
  "TRANSACTION_MAX_RETRY_DELAY" => [502, "Set the maximum amount of backoff delay incurred in the call to ``onError`` if the error is retryable. This sets the ``max_retry_delay`` option of each transaction created by this database. See the transaction option description for more information.", 0, "value in milliseconds of maximum delay"],
72
72
  "TRANSACTION_SIZE_LIMIT" => [503, "Set the maximum transaction size in bytes. This sets the ``size_limit`` option on each transaction created by this database. See the transaction option description for more information.", 0, "value in bytes"],
73
73
  "TRANSACTION_CAUSAL_READ_RISKY" => [504, "The read version will be committed, and usually will be the latest committed, but might not be the latest committed in the event of a simultaneous fault and misbehaving clock.", nil, nil],
74
+ "TRANSACTION_INCLUDE_PORT_IN_ADDRESS" => [505, "Addresses returned by get_addresses_for_key include the port when enabled. This will be enabled by default in api version 700, and this option will be deprecated.", nil, nil],
74
75
  }
75
76
 
76
77
  @@TransactionOption = {
77
78
  "CAUSAL_WRITE_RISKY" => [10, "The transaction, if not self-conflicting, may be committed a second time after commit succeeds, in the event of a fault", nil, nil],
78
79
  "CAUSAL_READ_RISKY" => [20, "The read version will be committed, and usually will be the latest committed, but might not be the latest committed in the event of a simultaneous fault and misbehaving clock.", nil, nil],
79
80
  "CAUSAL_READ_DISABLE" => [21, "", nil, nil],
81
+ "INCLUDE_PORT_IN_ADDRESS" => [23, "Addresses returned by get_addresses_for_key include the port when enabled. This will be enabled by default in api version 700, and this option will be deprecated.", nil, nil],
80
82
  "NEXT_WRITE_NO_WRITE_CONFLICT_RANGE" => [30, "The next write performed on this transaction will not generate a write conflict range. As a result, other transactions which read the key(s) being modified by the next write will not conflict with this transaction. Care needs to be taken when using this option on a transaction that is shared between multiple threads. When setting this option, write conflict ranges will be disabled on the next write operation, regardless of what thread it is on.", nil, nil],
81
83
  "READ_YOUR_WRITES_DISABLE" => [51, "Reads performed by a transaction will not see any prior mutations that occured in that transaction, instead seeing the value which was in the database at the transaction's read version. This option may provide a small performance benefit for the client, but also disables a number of client-side optimizations which are beneficial for transactions which tend to read and write the same keys within a single transaction.", nil, nil],
82
84
  "READ_AHEAD_DISABLE" => [52, "Deprecated", nil, nil],
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.2.0
4
+ version: 6.2.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - FoundationDB
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-08 00:00:00.000000000 Z
11
+ date: 2020-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -65,7 +65,7 @@ requirements:
65
65
  - These bindings require the FoundationDB client. The client can be obtained from
66
66
  https://www.foundationdb.org/download/.
67
67
  rubyforge_project:
68
- rubygems_version: 2.6.14.3
68
+ rubygems_version: 2.6.14.4
69
69
  signing_key:
70
70
  specification_version: 4
71
71
  summary: Ruby bindings for the FoundationDB database