-
I would like to port leveldb backend storage to RocksDB.
RocksDB builds on LevelDB to be scalable to run on servers with many CPU cores, to efficiently use fast storage, to support IO-bound, in-memo…
-
On OTP-20.x:
```
_build/default/lib/bitcask/src/bitcask_merge_delete.erl:50: type queue() undefined
```
Using `basho/bitcask`/`develop-3.0` branch works here.
-
- open_with_cf
- list_column_families
- create_column_family
- drop_column_family
- put/5 (with cf)
- delete/4 (with cf)
- get/4 (with cf)
- iterator_with_cf
- count/2 (with cf)
- status/3 (with cf)
-
Just been reading the code. In your c_src drv, in get, you create a txn and do the get and then abort the txn. The pointers to data returned from the get are then copied to the ErlNifBinary which are …
-
### Elixir version
Elixir 1.15.4 (compiled with Erlang/OTP 26)
### Database and Version
SQLITE 3.46.1 from exqlite changelog
### Ecto Versions
ecto 3.12.4
### Database Adapter and V…
-
Current Implementation:
The are two per-key caches:
an operation cache where the most recent operations are stored, and
a snapshot cache which stores the latest materialised views (snapshots) of a C…
-
Actual results:
```elixir
Floki.parse("5 = 5")
[{"span", [], ["5"]}, {"span", [], ["="]}, {"span", [], ["5"]}]
```
Expected results:
```elixir
Floki.parse("5 = 5")
# or
Floki.parse("5…
Eiji7 updated
9 months ago
-
Also column numbers if possible if leex supports this
-
Sorry to keep opening issues!
I'm just leaving this here so we can discuss ideas for how to support git dependencies.
Peronally I would like to have this before I update the Elixir tutorial to use m…
-
FDB allows for:
`tls_ca_path` `tls_ca_bytes`
`tls_key_path` `tls_key_bytes`
`tls_cert_path` `tls_cert_bytes`
When erlfdb inits using the `path` env values I can connect to the cluster and use …