Change default hashtable size
[iotcloud.git] / version2 / src / C / hashtable.h
index 868060c17417cf6b1c71d2ca8c18c23d7384b67b..6107e339c3ea972e5997374708f999cb7b4d2b5c 100644 (file)
@@ -70,7 +70,7 @@ public:
         * @param factor Sets the percentage full before the hashtable is
         * resized. Default ratio 0.5.
         */
-       Hashtable(unsigned int initialcapacity = 1024, double factor = 0.5) {
+       Hashtable(unsigned int initialcapacity = 32, double factor = 0.5) {
                // Allocate space for the hash table
                table = (struct Hashlistnode<_Key, _Val> *)ourcalloc(initialcapacity, sizeof(struct Hashlistnode<_Key, _Val>));
                zero = NULL;