Germán Méndez Bravo

Results 66 comments of Germán Méndez Bravo

Documentation has been making major leaps over the last weeks, it’s still nowhere near complete, but it’s getting there

Text queries follow a lot of what Xapian itself supports in it's Query Parser (https://getting-started-with-xapian.readthedocs.io/en/latest/concepts/search/queryparser.html) but the boolean tree is parsed by Xapiand instead (`src/booleanParser` and `src/query_dsl.cc`). However, instead of...

Please share information about your OS and compiler including exact versions

Multicast can currently work with UDP only; however, if you have nodes in different networks, you can currently use something like this: https://github.com/Kronuz/Xapiand/blob/master/contrib/python/multicast.py to propagate messages across networks.

You also need libtool to build under macOS: ``` brew install autoconf brew install automake brew install pkg-config brew install libtool pip install librabbitmq ```

What if we take as headers only comments starting with `#!` or `#\s*@` and also comments that are not followed by a statement?, in other words any of the following...

For modulo and divisions, have you tried Barrett? There’s also other method which combines Newton Inversion with Barrett’s algorithm (Newton Division), there’s an interesting paper here comparing algorithms: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.111.9736&rep=rep1&type=pdf

I made a ton of additions/changes in https://github.com/Kronuz/uint_t lots of optimizations and quite a few algorithms

Clang doesn’t define `__GNUC__`, yet it does support `emmintrin.h`, please we need to remove the `__GNUC__` checks and just leave `__SSE2__` to make this code efficient also with clang.

Well, here it wasn’t compiling that part and it was because of that `__GNUC__` check. I'll dig deeper.