We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4223502 + 1ec6c0b commit 09ba509Copy full SHA for 09ba509
EGOCache.m
@@ -93,8 +93,8 @@ - (id)initWithCacheDirectory:(NSString*)cacheDirectory {
93
dispatch_set_target_queue(priority, _frozenCacheInfoQueue);
94
95
_diskQueue = dispatch_queue_create("com.enormego.egocache.disk", DISPATCH_QUEUE_CONCURRENT);
96
- priority = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0);
97
- dispatch_set_target_queue(priority, _cacheInfoQueue);
+ priority = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0);
+ dispatch_set_target_queue(priority, _diskQueue);
98
99
100
_directory = cacheDirectory;
0 commit comments