Aleksey Kluchnikov
Aleksey Kluchnikov
func1(Text) -> {ok, L} = lua:new_state(), ?debugf("func1", L), % {ok, L} = lua:new_state(), ?debugf("func2", L), %
When compile in embedded, start ends with error. {"init terminating in do_boot",{'cannot load',erlualib,get_file}} erlualib.beam not exists, so I change erlualib/src/erlualib.app.src, {mod, { erlualib, []}}, to {mod, { lua, []}}, I...
Hi, i add maps support by add couchbeam:open_doc(Db, DocId, Options), Options = [return_maps] Work, but not heavy tested
Hi. How about maps support? Some like this couchbeam:save_doc/couchbeam:open_doc ``` erlang diff --git a/src/couchbeam.erl b/src/couchbeam.erl index 8b3c967..808f6ca 100644 --- a/src/couchbeam.erl +++ b/src/couchbeam.erl @@ -441,7 +441,14 @@ open_doc(Db, DocId) -> %%...
Hi. After some tests get error > erocksdb:open("test_db2", [], []). > {error,{db_open,"IO error: lock test_db2/LOCK: No locks available"}} And here no way to close or restore connect with data without...
Hi Please add post method examples and/or documentation. Very hard research how to send different post request without it.
ibrowse_http_client.erl line 615 is_ipv6_host(Host) use inet_parse:address(Host) which always return {error,einval} For host with ipv4 and ipv6 resolving to ipv6 by default, but if ssl compiled without ipv6, ibrowse dosnt work