- 27 Oct, 2021 1 commit
-
-
Nils Goroll authored
-
- 07 Jun, 2021 1 commit
-
-
Geoff Simmons authored
-
- 21 Apr, 2021 2 commits
-
-
Geoff Simmons authored
-
Geoff Simmons authored
-
- 22 Feb, 2021 6 commits
-
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
- 21 Feb, 2021 1 commit
-
-
Geoff Simmons authored
-
- 02 Feb, 2021 9 commits
-
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
vmod_selector.c was over 1000 lines.
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
.compile() is still legal, but unnecessary and will be deprecated. .create_stats() just sets a flag in the PRIV_TASK that stats should be created by the fini method. If .compile() is called, .create_stats() is now legal before or after .compile().
-
- 10 Dec, 2020 1 commit
-
-
Geoff Simmons authored
-
- 09 Dec, 2020 1 commit
-
- 16 Oct, 2020 18 commits
-
-
Geoff Simmons authored
Currently to document the recent breaking changes and refactoring.
-
Geoff Simmons authored
The complexity analysis can be highly nuanced. Sets with many strings and/or long strings can in fact require more time for matching due to locality effects, which depends highly on usage patterns. Prefix matches can be longer for large sets since the depth of branching in the trie becomes larger. But these are considerations at the level of micro-optimization. It's the difference between two- or three-digit nanosecond mean times for the matches. So it suffices to claim that matching is fast and scales well.
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
Benchmarks have shown that (collision buckets)/(set size) ranges from 10%-25%, so there's no need to tweak the hash table size.
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-
Geoff Simmons authored
-