Joseph Ellsworth

Results 14 comments of Joseph Ellsworth

Working on a version in GO that handles variable interpolation and inheritance to avoid having thousands of config strings that vary only a small amount or vary in predictable patterns...

> I've tested file2consul and it's a job well done. > However, it is still too basic for most of my needs. I think that somebody should fork git2consul and...

> @joeatbayes awesome will take a look, so yours will integrate with git as well? would it be a straight migration from git2consul to use yours or a totally different...

Has this been resolved? I faced a similar issue with TDA today and had to call into customer support. I was considering a different broker because I need a reliable...

You make a good point. I should have added examples that show dynamically allocated keys and values. I actually use khash mostly with dynamically allocated strings I had used the...

Hey @jvonmitchell A simple table showing all object types stored would be problematic since you end up creating a number for each new combination of key and body. This table...

You can easily use structs. I have used it many times. From: Arcane Engineer [mailto:[email protected]] Sent: Wednesday, November 4, 2015 2:11 PM To: attractivechaos/klib [email protected] Cc: Joseph Ellsworth [email protected] Subject:...

Not directly but it is pretty easy to accomplish. Simply create an object such as a linked list that contains pointers to the object you want to store. You add...

I like the example. You could also use the following if you wanted a variable length object. typedef struct { linkedList *ll; } myval_t; I most often work on engines...

@tinaze please create a free repository with your example code. It is hard to read in the comment.