David Rauschenbach

Results 33 issues of David Rauschenbach

Given the code: ```lua local client = redis.connect('redis://localhost:6379/9') ``` The expected result is that database #9 is either selected, or the connect should fail. This is standard in many other...

Since Lua uses cooperative multitasking and is single-threaded in most environments, libraries like LuaSocket depend heavily on timeouts and doing small batches of work at a time. As a Redis...

Andrea, this is a neat project. I wonder if adding a Dockerfile to each directory would make this project fun for you again, and relieve you of having to manually...

1. What version of GopherLua are you using? : 2243d714d6c94951d8ccca8c851836ff47d401c9 2. What version of Go are you using? : 1.9.2 3. What operating system and processor architecture are you using?...

In the master branch and v0.16.0 tag release, I cannot find mention of the `loop` template function that was introduced in https://github.com/kelseyhightower/confd/pull/363. I've reviewed the history of commits to that...

Fantastic library! I've ported it to Lua. https://github.com/BixData/lua-long Anyone know how to implement a power function? It'd make a great addition.

enhancement

Mongo filters perform array lookups. This should return a match: ``` let doc1 = {id:1, tags:['blue','green']} let doc2 = {id:2, tags:['red']} let docs = [doc1, doc2] let query = {tags:'blue'}...

Given the hypothetical mac address `ab:bc:cd:01:02:03`, this library returns a table whose values are missing leading zero padding, eg `ab:bc:cd:1:2:3`. This prevents values in the table from being comparable to...

I have an optional struct that I want to inject into another struct. So I define the reference as a pointer. ResolveAll() doesn't support this valid struct value and blows...