Skip to content

Commit

Permalink
Bump the static pool allocation from 1024 to 4096
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Boone committed Jan 20, 2017
1 parent 081132a commit 6f30928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aerospike/include/conversions.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ namespace HPHP {

class StaticPoolManager {
private:
static const uint32_t STATIC_POOL_MAX_SIZE = 1024;
static const uint32_t STATIC_POOL_MAX_SIZE = 4096;
as_string string_pool[STATIC_POOL_MAX_SIZE];
as_integer integer_pool[STATIC_POOL_MAX_SIZE];
as_arraylist list_pool[STATIC_POOL_MAX_SIZE];
Expand Down

0 comments on commit 6f30928

Please sign in to comment.