mirror of
git://erdgeist.org/opentracker
synced 2025-07-22 00:15:19 +02:00
After studying opentracker live data, I decided to radically reduce default allocation for vectors and making it grow faster instead: Most pools only had one or two peers, wasting 8*15 or 8*14 bytes.
This commit is contained in:
parent
870c995fbb
commit
daf79f694d
1 changed files with 3 additions and 3 deletions
|
@ -45,9 +45,9 @@ typedef time_t ot_time;
|
|||
extern time_t g_now;
|
||||
#define NOW (g_now/OT_POOLS_TIMEOUT)
|
||||
|
||||
#define OT_VECTOR_MIN_MEMBERS 16
|
||||
#define OT_VECTOR_GROW_RATIO 4
|
||||
#define OT_VECTOR_SHRINK_THRESH 5
|
||||
#define OT_VECTOR_MIN_MEMBERS 4
|
||||
#define OT_VECTOR_GROW_RATIO 8
|
||||
#define OT_VECTOR_SHRINK_THRESH 6
|
||||
#define OT_VECTOR_SHRINK_RATIO 4
|
||||
typedef struct {
|
||||
void *data;
|
||||
|
|
Loading…
Add table
Reference in a new issue