博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios URLConnection Cache
阅读量:6482 次
发布时间:2019-06-23

本文共 2953 字,大约阅读时间需要 9 分钟。

hot3.png

网络通信层一直是我最重视的技术,因为数据的稳定才能使整个应用流畅运行。

缓存是个双刃剑,用好的就可以增强用户体验,用得不好就会造成一种假象。

首先cache需要用数据库纪录缓存得数据,创建得时间,过期得时间(就是相隔多长时间更新一次缓存),相对应得key。

例如:

FMResultSet *set = [db executeQuery:@"SELECT * FROM json_caches WHERE key = ?",self.cacheName];

        if ([set next]) {

            NSInteger _id = [set intForColumn:@"row_id"];

            jsonData = [set dataForColumn:@"value"];

            NSInteger readedTimes = [set intForColumn:@"readed_times"];

            NSDate *savedTime = [set dateForColumn:@"saved_time"];

            NSDate *now = [NSDate date];

            double timeInterval = [now timeIntervalSinceDate:savedTime];

if (timeInterval < self.cacheValidity * 3600) {                

                BOOL rs = [db executeUpdate:[NSString stringWithFormat:@"UPDATE json_caches SET readed_times = %d WHERE row_id = %d",++readedTimes,_id]];                

                NIF_TRACE(@"%d", rs);

            } else {

                jsonData = nil;

            }

当save缓存得时间到现在得时间小于有效缓存时间则说明缓存有效,把缓存数据返回,并且增加一次readtime。

如果没有缓存则重新请求数据

1。首先拼接URL

2.根据url创建request

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:self.url] cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:20.f];

3.根据request创建connection

NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];

self.connection = conn;

[conn release];

[self.connection start];

4.当建立起connection后就开始接受数据了,会调用connection得委托方法

- (void)connection:(NSURLConnection *)aConnection didReceiveResponse:(NSURLResponse *)response ;

- (void)connection:(NSURLConnection *)aConnection didReceiveData:(NSData *)data ;

- (void)connectionDidFinishLoading:(NSURLConnection *)aConnection ;

5.接受完成后会在finish这个方法里面回调

 {

            jsonValue = [self.buffer yajl_JSON];

        }

        @catch (NSException * e) {

            NIF_ERROR(@"%@",e);

            }

        }

          {

                    if (self.delegate && [self.delegate respondsToSelector:@selector(dURLConnection:didFinishLoadingJSONValue:string:)]) {

                        NSString *string = [[NSString alloc] initWithData:self.buffer encoding:NSUTF8StringEncoding];

                        [self.delegate dURLConnection:self didFinishLoadingJSONValue:nil string:string];

                        [string release];

                    }

                }

            }

        }

6.在创建connection得那个类文件中实现协议中得委托方法,然后做相应处理。

7.请求下来得数据会存到数据库中

FMResultSet *set = [db executeQuery:@"SELECT * FROM json_caches WHERE key = ?",self.cacheName,nil];

            if ([set next]) {       // UPDATE

                int _id = [set intForColumn:@"row_id"];

BOOL rs = [db executeUpdate:@"UPDATE json_caches SET value = ?,saved_time = ?,validity_duration=? WHERE row_id = ?", jsonData, [NSDate date],[NSNumber numberWithDouble:self.cacheValidity*3600], [NSNumber numberWithInt:_id]];

NIF_TRACE(@"update cache success? : %d", rs);

            } else {

                NSError *error = nil;

               BOOL rs = [db executeUpdate:@"INSERT INTO json_caches (key,value,saved_time,validity_duration,type) VALUES(?,?,?,?,?)",self.cacheName,jsonData, [NSDate date], [NSNumber numberWithDouble:self.cacheValidity*3600],self.cacheType, nil];

                NIF_TRACE(@"save cache success? : %d", rs);

                if (error) {

                    NIF_TRACE(@"save cache error happened : %@", error);                

                }                

            }

NIF_TRACE(@"---- WRITE TO CACHE %@",self.url);

            [db close];

8.value是NSData的类型

转载于:https://my.oschina.net/sunqichao/blog/94306

你可能感兴趣的文章
马云马化腾等大佬,是如何看待区块链的?
查看>>
10倍于行业增速!海尔冰箱套圈引领
查看>>
Java集合总结【面试题+脑图】,将知识点一网打尽!
查看>>
API开发中如何使用限速应对大规模访问
查看>>
java基础(十) 数组类型
查看>>
小程序 Canvas绘图不同尺寸设备 UI兼容的两个解决方案
查看>>
产品规划,你通常规划多久的时间线?
查看>>
Android-MVP架构
查看>>
HTML5前端教程分享:CSS浏览器常见兼容问题
查看>>
Material Design之AppBarLayout
查看>>
Linux系统VNC配置
查看>>
开机启动项设置
查看>>
Windows gevent 安装说明
查看>>
让mysql不能为空的字段为空时也能插入
查看>>
一服多开
查看>>
Screen后台启动脚本
查看>>
从CVS迁移到SVN
查看>>
Central Subscriber Model Explained
查看>>
总部与前线
查看>>
分布式监控之Zabbix-Proxy
查看>>