cacheTest.cpp 4.1 KB
Newer Older
H
hjxilinx 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#include <iostream>
#include <gtest/gtest.h>
#include <sys/time.h>

#include "taos.h"
//#include "tsdb.h"

//#include "testCommon.h"
#include "tstoken.h"
#include "tutil.h"
#include "tcache.h"
#include "ttimer.h"
#include "ttime.h"

namespace {
int32_t tsMaxMgmtConnections = 10000;
int32_t tsMaxMeterConnections = 200;
}
// test cache
TEST(testCase, client_cache_test) {
  const int32_t REFRESH_TIME_IN_SEC = 2;
H
Haojun Liao 已提交
22
  SCacheObj* tscCacheHandle = taosCacheInit(REFRESH_TIME_IN_SEC);
H
hjxilinx 已提交
23

H
hjxilinx 已提交
24 25
  const char* key1 = "test1";
  char data1[] = "test11";
H
hjxilinx 已提交
26

H
hjxilinx 已提交
27
  char* cachedObj = (char*) taosCachePut(tscCacheHandle, key1, data1, strlen(data1)+1, 1);
H
hjxilinx 已提交
28 29 30 31
  sleep(REFRESH_TIME_IN_SEC+1);

  printf("obj is still valid: %s\n", cachedObj);

H
hjxilinx 已提交
32
  char data2[] = "test22";
H
hjxilinx 已提交
33 34 35
  taosCacheRelease(tscCacheHandle, (void**) &cachedObj, false);

  /* the object is cleared by cache clean operation */
H
hjxilinx 已提交
36
  cachedObj = (char*) taosCachePut(tscCacheHandle, key1, data2, strlen(data2)+1, 20);
H
hjxilinx 已提交
37 38 39 40 41 42
  printf("after updated: %s\n", cachedObj);

  printf("start to remove data from cache\n");
  taosCacheRelease(tscCacheHandle, (void**) &cachedObj, false);
  printf("end of removing data from cache\n");

H
hjxilinx 已提交
43 44
  const char* key3 = "test2";
  const char* data3 = "kkkkkkk";
H
hjxilinx 已提交
45

H
hjxilinx 已提交
46
  char* cachedObj2 = (char*) taosCachePut(tscCacheHandle, key3, data3, strlen(data3) + 1, 1);
H
hjxilinx 已提交
47 48 49 50 51 52 53 54
  printf("%s\n", cachedObj2);

  taosCacheRelease(tscCacheHandle, (void**) &cachedObj2, false);

  sleep(3);
  char* d = (char*) taosCacheAcquireByName(tscCacheHandle, key3);
//    assert(d == NULL);

H
hjxilinx 已提交
55 56
  char key5[] = "test5";
  char data5[] = "data5kkkkk";
H
hjxilinx 已提交
57
  cachedObj2 = (char*) taosCachePut(tscCacheHandle, key5, data5, strlen(data5) + 1, 20);
H
hjxilinx 已提交
58

H
hjxilinx 已提交
59
  const char* data6= "new Data after updated";
H
hjxilinx 已提交
60 61
  taosCacheRelease(tscCacheHandle, (void**) &cachedObj2, false);

H
hjxilinx 已提交
62
  cachedObj2 = (char*) taosCachePut(tscCacheHandle, key5, data6, strlen(data6) + 1, 20);
H
hjxilinx 已提交
63 64 65 66
  printf("%s\n", cachedObj2);

  taosCacheRelease(tscCacheHandle, (void**) &cachedObj2, true);

H
hjxilinx 已提交
67
  const char* data7 = "add call update procedure";
H
hjxilinx 已提交
68
  cachedObj2 = (char*) taosCachePut(tscCacheHandle, key5, data7, strlen(data7) + 1, 20);
H
hjxilinx 已提交
69 70 71 72 73 74 75
  printf("%s\n=======================================\n\n", cachedObj2);

  char* cc = (char*) taosCacheAcquireByName(tscCacheHandle, key5);

  taosCacheRelease(tscCacheHandle, (void**) &cachedObj2, true);
  taosCacheRelease(tscCacheHandle, (void**) &cc, false);

H
hjxilinx 已提交
76 77
  const char* data8 = "ttft";
  const char* key6 = "key6";
H
hjxilinx 已提交
78 79 80 81 82 83 84 85

  char* ft = (char*) taosCachePut(tscCacheHandle, key6, data8, strlen(data8), 20);
  taosCacheRelease(tscCacheHandle, (void**) &ft, false);

  /**
   * 140ns
   */
  uint64_t startTime = taosGetTimestampUs();
H
hjxilinx 已提交
86
  printf("Cache Performance Test\nstart time:%" PRIu64 "\n", startTime);
H
hjxilinx 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99 100
  for(int32_t i=0; i<1000; ++i) {
    char* dd = (char*) taosCacheAcquireByName(tscCacheHandle, key6);
    if (dd != NULL) {
//      printf("get the data\n");
    } else {
      printf("data has been released\n");
    }

    taosCacheRelease(tscCacheHandle, (void**) &dd, false);
  }

  uint64_t endTime = taosGetTimestampUs();
  int64_t el = endTime - startTime;

H
hjxilinx 已提交
101
  printf("End of Test, %" PRIu64 "\nTotal Elapsed Time:%" PRIu64 " us.avg:%f us\n", endTime, el, el/1000.0);
H
hjxilinx 已提交
102 103 104 105 106 107

  taosCacheCleanup(tscCacheHandle);
}

TEST(testCase, cache_resize_test) {
  const int32_t REFRESH_TIME_IN_SEC = 2;
H
Haojun Liao 已提交
108
  auto* pCache = taosCacheInit(REFRESH_TIME_IN_SEC);
H
hjxilinx 已提交
109 110 111 112 113 114 115 116 117 118 119 120 121 122

  char key[256] = {0};
  char data[1024] = "abcdefghijk";
  int32_t len = strlen(data);

  uint64_t startTime = taosGetTimestampUs();
  int32_t num = 10000;

  for(int32_t i = 0; i < num; ++i) {
    int32_t len = sprintf(key, "abc_%7d", i);
    taosCachePut(pCache, key, data, len, 3600);
  }
  uint64_t endTime = taosGetTimestampUs();

H
hjxilinx 已提交
123
  printf("add %d object cost:%" PRIu64 " us, avg:%f us\n", num, endTime - startTime, (endTime-startTime)/(double)num);
H
hjxilinx 已提交
124 125 126 127 128 129 130 131

  startTime = taosGetTimestampUs();
  for(int32_t i = 0; i < num; ++i) {
    int32_t len = sprintf(key, "abc_%7d", i);
    void* k = taosCacheAcquireByName(pCache, key);
    assert(k != 0);
  }
  endTime = taosGetTimestampUs();
H
hjxilinx 已提交
132
  printf("retrieve %d object cost:%" PRIu64 " us,avg:%f\n", num, endTime - startTime, (endTime - startTime)/(double)num);
H
hjxilinx 已提交
133 134 135

  taosCacheCleanup(pCache);
}