1
0
mirror of git://erdgeist.org/opentracker synced 2025-01-26 22:56:26 +00: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:
erdgeist 2007-10-19 14:41:30 +00:00
parent 870c995fbb
commit daf79f694d

View File

@ -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;