| 69 | } analysis_param_t; |
| 70 | |
| 71 | static analysis_param_t default_param() { |
| 72 | analysis_param_t param; |
| 73 | param.track_n_popular = 8; |
| 74 | param.track_n_hit = 8; |
| 75 | param.time_window = 300; |
| 76 | param.warmup_time = 86400; |
| 77 | param.access_pattern_sample_ratio = 0.01; |
| 78 | param.access_pattern_sample_ratio_inv = 101; |
| 79 | |
| 80 | return param; |
| 81 | }; |
| 82 | |
| 83 | static struct analysis_option default_option() { |
| 84 | struct analysis_option option = { |