Agustín González
Agustín González
On another subtopic, after some quick tests I've also found that using thread_local adds a slight speed penalty, can it be? If so, is its use essential when decoding?
Hello everyone. Maybe the older and the latest version of `gcc` and `clang` could be checked. On the other hand, consider to update the [documentation](https://pisa.readthedocs.io/en/latest/getting_started.html) based on the changes.
Hello everyone! Looks good. Maybe, in the first paragraph, it can be useful define the _inverted index_ concept as the logical representation of a corpus.
Consider the `Simple8b` codec. On decoding, the `finalin` variable is computed using `endin` as: https://github.com/lemire/FastPFor/blob/224fe919760c073566334dde6f510769aff41beb/headers/simple8b.h#L511 On the other hand, `endin` variable is computed as: https://github.com/lemire/FastPFor/blob/224fe919760c073566334dde6f510769aff41beb/headers/simple8b.h#L495 Anyway, these variables are not...
@benbjohnson, my config file looks like the following: ``` # AWS credentials # access-key-id: AKIAxxxxxxxxxxxxxxxx # secret-access-key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxx dbs: - path: /tmp/source.db # Database to replicate from replicas: - path:...
To replicate a database to a local path, you can do the following: `litestream replicate origin.db file:/path/to/replica.db` Then, you will be able to restore the database with the "restore" command.
@elshize, done with the comments, but I'll be making some minor code refactoring as well.
@elshize, I've noticed a few tests are failing. This comes from the `master` branch, so it might be worth considering as another issue. Here's the error: ``` The following tests...
> Tests seem to be working fine in CI. What system are you running this on? What compiler? Can you show the output of one of the test? E.g.: >...
> @gustingonzalez is it possible you previously compiled the code on one machine and executed it on a different one? Great! That was the reason!