levelDB 시간 범위 검색
http://vcsky.net by havenzhao
데이터 삽입 함수 먼저 보기:
int InsertLevelDB(const char* key, const char* content)
{
//const char* Content = "2011-03-18 10:15:10,1.16591,2.27857,3.37197,4.45305,3.37197,1.16591,2.27857,3.37197,4.45305,5.52507,5.52507,4.45305,4.45305,4.45305,4.45305";
leveldb::DB* db = NULL;
leveldb::Options options;
options.create_if_missing = true;
options.write_buffer_size = 8 * 1024* 1024;
leveldb::Status status = leveldb::DB::Open(options, "c:/tmp/testdb", &db);
leveldb::WriteOptions wo;
wo.sync = false;
if (status.ok())
{
// cout << "write key: " << key << endl;
leveldb::Status s = db->Put(wo, key, content);
}
else
{
printf("Insert LevelDB error\r
");
}
delete db;
return 0;
}
그 중에서 키 의 형성 은 device 를 통 해id + 타임 스탬프 (time t 형식)
void GetKey(int device_id, time_t time_stamp, char* key)
{
char id[20];
_itoa_s(device_id, id, 10);
strcpy_s(key, 50, id);
char *timeStamp = TimeToChar(time_stamp); //
strcat_s(key, 50, timeStamp);
}
시간 시작 지점 에 따라 데 이 터 를 검색 하 는데 주로 timet 와 struct tm 의 특성 은 시간의 가감 을 통 해 키 값 을 형성 하여 value 값 을 얻어 value 집합 에 저장한다.
int QueryData(int device_id, time_t begin_time, time_t end_time, vector<string>& history_data)
{
leveldb::DB* db = NULL;
leveldb::Options options;
options.create_if_missing = true;
options.write_buffer_size = 8 * 1024* 1024;
leveldb::Status status = leveldb::DB::Open(options, "c:/tmp/testdb", &db);
if (!status.ok())
{
delete db;
printf("Insert LevelDB error\r
");
return -1;
}
time_t cur_time = begin_time ;
struct tm *beginTime, *curTime;
curTime = localtime(&begin_time);
char key[100];
string content;
while(cur_time <= end_time) // key, value
{
curTime->tm_sec += 1;
cur_time = mktime(curTime);
memset(key, 0, sizeof(key));
GetKey(device_id, cur_time, key);
leveldb::ReadOptions ro;
leveldb::Status s = db->Get(ro, key, &content);
if (!content.empty())
{
history_data.push_back(content.c_str());
}
}
delete db;
return 0;
}
이상 은 대체적인 사고방식 이다. 키 값 에 시간 이 포함 되 어 있 기 때문에 이 루어 진 범위 검색 이다. http://vcsky.net by havenzhao
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Visual Studio에서 파일 폴더 구분 (포함 경로 설정)Visual Studio에서 c, cpp, h, hpp 파일을 폴더로 나누고 싶었습니까? 어쩌면 대부분의 사람들이 있다고 생각합니다. 처음에 파일이 만들어지는 장소는 프로젝트 파일 등과 같은 장소에 있기 때문에 파일...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.