3 * Author: Mingqiang Zhuang
5 * Created on February 10, 2009
7 * (c) Copyright 2009, Schooner Information Technology, Inc.
8 * http://www.schoonerinfotech.com/
22 #if !defined(__cplusplus)
33 /* command line option */
40 OPT_EXECUTE_NUMBER
= 'x',
41 OPT_THREAD_NUMBER
= 'T',
45 OPT_GETS_DIVISION
= 'd',
53 OPT_FACEBOOK_TEST
= 'a',
54 OPT_SOCK_PER_CONN
= 'n',
55 OPT_BINARY_PROTOCOL
= 'B',
58 OPT_REP_WRITE_SRV
= 'p'
61 /* global statistic of response time */
62 typedef struct statistic
64 pthread_mutex_t stat_mutex
; /* synchronize the following members */
66 ms_stat_t get_stat
; /* statistics of get command */
67 ms_stat_t set_stat
; /* statistics of set command */
68 ms_stat_t total_stat
; /* statistics of both get and set commands */
71 /* global status statistic structure */
74 volatile uint32_t active_conns
; /* active connections */
75 size_t bytes_read
; /* read bytes */
76 size_t bytes_written
; /* written bytes */
77 size_t obj_bytes
; /* object bytes */
78 size_t pre_cmd_get
; /* previous total get command count */
79 size_t pre_cmd_set
; /* previous total set command count */
80 size_t cmd_get
; /* current total get command count */
81 size_t cmd_set
; /* current total set command count */
82 size_t get_misses
; /* total objects of get miss */
83 size_t vef_miss
; /* total objects of verification miss */
84 size_t vef_failed
; /* total objects of verification failed */
85 size_t unexp_unget
; /* total objects which is unexpired but not get */
86 size_t exp_get
; /* total objects which is expired but get */
87 volatile size_t pkt_disorder
; /* disorder packages of UDP */
88 size_t pkt_drop
; /* packages dropped of UDP */
89 size_t udp_timeout
; /* how many times timeout of UDP happens */
93 typedef struct sync_lock
100 /* global variable structure */
101 typedef struct global
103 /* synchronize lock */
104 ms_sync_lock_t init_lock
;
105 ms_sync_lock_t warmup_lock
;
106 ms_sync_lock_t run_lock
;
108 /* mutex for outputing error log synchronously when memslap crashes */
109 pthread_mutex_t quit_mutex
;
111 /* mutex for generating key prefix */
112 pthread_mutex_t seq_mutex
;
114 /* global synchronous flags for slap mode */
119 /* global structure */
120 ms_global_t ms_global
;
122 /* global stats information structure */
125 /* global statistic structure */
126 ms_statistic_t ms_statistic
;
132 #endif /* end of MS_MEMSLAP_H */