Doug Hoyte

Results 106 comments of Doug Hoyte

Just to be clear, I am seeing this when I issue a POST request with an empty body (admittedly somewhat of an edge case. Here is a test-case: use Feersum;...

Thanks! Yes that fixes it (you have to comment out 1583 and 1585 as well so it compiles). I guess this adds some overhead to GET requests since even then...

You need to install some packages via CPAN: $ cpanm --sudo common::sense AnyEvent::HTTP AnyEvent::IRC::Client JSON::XS Then run the bot as described in the README (pass in IRC server, channel, and...

Thanks for the info. An interface to automatically maintain indices is a cool concept. It reminds me of BDB's `associate`: https://web.stanford.edu/class/cs276a/projects/docs/berkeleydb/api_c/db_associate.html One nice thing about `associate` was that you could...

Ahhh got it. Yep I've never tried to serialize a std::string directly. I didn't even know lmdbxx supported that to be honest. I've always just made values with `lmdb::val(my_str.c_str(), my_str.size())`...

I just forked lmdbxx for anyone interested: https://github.com/hoytech/lmdbxx The main difference is I got rid of `lmdb::val` and replaced it with C++17's `std::string_view`. @ahupowerdns - I also removed the templated...

@hyc - Thank you, I've added it to my list!

Thanks very much for the offer! I'm happy to accept patches for the debian/ directory, although I'm not very familiar with debian packaging policies. Hopefully somebody from debian will just...

Sorry I read through and responded to your pull request before reading this. Your second suggestion sounds fine, thanks!

Sorry about the delay, I'm back now. Regarding your first point about the man paths, I updated the main Makefile and got rid of your override here: 146bcec1cee14303dd2e744f09773a6c931dc6fa For the...