blob: a288974cda8a86761d701a4c266204c5f7b99407 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
Try different hashing functions (current: crc64), e.g murmur
Change DB model from struct row
typedef struct{
char path[MAXPATH];
char tags[MAXTAGS];
uint16_t lenTags;
uint16_t numTags;
} row;
to tables of ids
images[] tags[] images:tags[]
DONE Try to improve 'sameStr' by maybe not having to check s2[i2]
|