Bryan Matsuo
Bryan Matsuo
It's worth noting that use of MDB_NOLOCK brings with it caveats that are not present by default. So I'm not sure that its use can ever truly supersede the current,...
> > The RWMutex access pattern required when using MDB_NOLOCK is actually more restrictive than vanilla LMDB, which allows read transactions concurrent with write transactions. > > [...] So we'd...
If someone wanted to help all they need to do is rewrite, or provide a new implementation of, the `ShellReader` interface which parses commands into string slices. It's pretty straight...
For now `rlwrap` seems to do a sufficient job with the proper options. ``` sh rlwrap -A -N jqsh ``` The rlwrap man page suggests that `-N` is Linux only...
I don't think readline proper is the right way to go. The utility needs to be statically linked IMO. That would mean including the readline source and making the license...
Also a problem for me on Ubuntu Lucid.
related to #3
another useful sounding thing is a "stack history" with previous stacks (previously cleared or from previous sessions), potentially a "stack stash" for naming commonly used stacks.
I marked this a "priority:med" just to introduce a config file sooner than later, if its going to be there. edit: reduce to "priority:low". rc files are well know beasts....
Yea. It makes sense to provide a way to override the executable in the PATH. I will add an option, -jq. ``` jqsh -jq=/opt/bin/jq > ```