一贱勃、思維腦圖
二纹因、緩存思想
- 數(shù)據(jù)庫底層基于Sqlite。
每個數(shù)據(jù)庫表只有Key, Value兩個字段昼扛。
直接將JSON數(shù)據(jù)存儲到Value中,并設(shè)置Key。
- 通過Key查找對應(yīng)Value數(shù)據(jù),來進行數(shù)據(jù)增刪改查操作,并更新視圖欲诺。
1.使用SDWebImage緩存圖片抄谐。
2.使用YTKKeyValueStore更方便使用FMDB。
3.使用FMDB操作數(shù)據(jù)庫扰法。
SDWebImage官方地址: https://github.com/rs/SDWebImage
YTKKeyValueStore官方地址: https://github.com/yuantiku/YTKKeyValueStore
FMDB官方地址: https://github.com/ccgus/fmdb
三蛹含、使用YTKKeyValueStore操作數(shù)據(jù)庫
iOS端數(shù)據(jù)量不大,使用最簡單直接的Key-Value存儲就能帶來開發(fā)上的效率優(yōu)勢。
1.Model層的代碼編寫簡單塞颁,易于測試浦箱。
2.由于Value是JSON格式,所以在做Model字段更改時祠锣,易于擴展和兼容酷窥。
- 簡單使用
//1.打開數(shù)據(jù)庫(若有),創(chuàng)建數(shù)據(jù)庫(若無)
YTKKeyValueStore *store = [[YTKKeyValueStore alloc] initDBWithName:@"test.db"];
//2.創(chuàng)建數(shù)據(jù)庫表(若無),忽略(若無)
NSString *tableName = @"user_table";
[store createTableWithName:tableName];
//3.寫入數(shù)據(jù)
NSString *key = @"1";
NSDictionary *user = @{@"id": @1, @"name": @"tangqiao", @"age": @30};
[store putObject:user withId:key intoTable:tableName];
//4.讀取數(shù)據(jù)
NSDictionary *queryUser = [store getObjectById:key fromTable:tableName];
NSLog(@"query data result: %@", queryUser);
- 打開(創(chuàng)建)數(shù)據(jù)庫
默認創(chuàng)建在Document路徑下。
若打開的數(shù)據(jù)庫不存在則創(chuàng)建伴网。
// 打開名為test.db的數(shù)據(jù)庫蓬推,如果該文件不存在,則創(chuàng)新一個新的澡腾。
YTKKeyValueStore *store = [[YTKKeyValueStore alloc] initDBWithName:@"test.db"];
- 創(chuàng)建數(shù)據(jù)庫表
若創(chuàng)建的表存在則忽略沸伏。
YTKKeyValueStore *store = [[YTKKeyValueStore alloc] initDBWithName:@"test.db"];
NSString *tableName = @"user_table";
// 創(chuàng)建名為user_table的表,如果已存在动分,則忽略該操作
[store createTableWithName:tableName];
- 讀寫數(shù)據(jù)
通過Key-Value來讀寫數(shù)據(jù)庫表中數(shù)據(jù)毅糟。
Value支持類型:NSString, NSNumber, NSDictionary,NSArray。
//寫入數(shù)據(jù)
- (void)putString:(NSString *)string withId:(NSString *)stringId intoTable:(NSString *)tableName;
- (void)putNumber:(NSNumber *)number withId:(NSString *)numberId intoTable:(NSString *)tableName;
- (void)putObject:(id)object withId:(NSString *)objectId intoTable:(NSString *)tableName;
//讀取數(shù)據(jù)
- (NSString *)getStringById:(NSString *)stringId fromTable:(NSString *)tableName;
- (NSNumber *)getNumberById:(NSString *)numberId fromTable:(NSString *)tableName;
- (id)getObjectById:(NSString *)objectId fromTable:(NSString *)tableName;
- 刪除數(shù)據(jù)
// 清除數(shù)據(jù)表中所有數(shù)據(jù)
- (void)clearTable:(NSString *)tableName;
// 刪除指定key的數(shù)據(jù)
- (void)deleteObjectById:(NSString *)objectId fromTable:(NSString *)tableName;
// 批量刪除一組key數(shù)組的數(shù)據(jù)
- (void)deleteObjectsByIdArray:(NSArray *)objectIdArray fromTable:(NSString *)tableName;
// 批量刪除所有帶指定前綴的數(shù)據(jù)
- (void)deleteObjectsByIdPrefix:(NSString *)objectIdPrefix fromTable:(NSString *)tableName;
- 其他
YTKKeyValueItem類帶有createdTime字段刺啦,可以獲得該條數(shù)據(jù)的插入(或更新)時間留特,以便上層做復(fù)雜的處理(例如用來做緩存過期邏輯)。
// 獲得指定key的數(shù)據(jù)
- (YTKKeyValueItem *)getYTKKeyValueItemById:(NSString *)objectId fromTable:(NSString *)tableName;
// 獲得所有數(shù)據(jù)
- (NSArray *)getAllItemsFromTable:(NSString *)tableName;