告诉Volley不要使用缓存数据,而是发起新请求?

san*_*one 5 android caching android-volley

我在应用程序中遇到了一个问题,我认为它可能与Volley从缓存中提取数据有关.

也就是说,应用程序与API紧密绑定,因此每次更改都会发送到API,然后使用Volley库从API中检索.因此,用户将打开一个弹出窗口,选择一些组来查看其项目,然后选择一些值来标记它的最爱.弹出窗口将关闭,片段将重新加载新数据.

当用户再次打开弹出窗口时,选择相同的组来加载其数据,之前的项目将不会显示为收藏夹.但是当用户再次触摸同一组以重新加载其数据时,该项目将显示为收藏夹.

我已经逐步调试了代​​码,但没有发现任何错误.所以我得出结论,Volley可能会从其缓存中提取数据,同时在我第二次点击该组时启动新的API请求.

我想测试它是否是缓存问题或者我必须更深入地调试.

有没有办法告诉Volley不要使用缓存的请求数据,而是启动对API的新请求?有点像don't use cached data, but make a new request.

注意:我不想删除完整的缓存.我只想告诉Volley什么时候发起一个全新的API请求.

BNK*_*BNK 2

IMO,如果您的项目使用 Google 的 volley 作为模块(而不是 jar 文件),您可以自定义其类,如下所示:

选项1:

第一个文件,RequestQueue.java:

添加一个类变量private boolean mCacheUsed = true;

以及以下构造函数:

    public RequestQueue(Cache cache, Network network, int threadPoolSize,
                        ResponseDelivery delivery, boolean cacheUsed) {
        mCache = cache;
        mNetwork = network;
        mDispatchers = new NetworkDispatcher[threadPoolSize];
        mDelivery = delivery;
        mCacheUsed = cacheUsed;
    }

    public RequestQueue(Cache cache, Network network, int threadPoolSize, boolean cacheUsed) {
        this(cache, network, threadPoolSize,
                    new ExecutorDelivery(new Handler(Looper.getMainLooper())), cacheUsed);
    }

    public RequestQueue(Cache cache, Network network, boolean cacheUsed) {
        this(cache, network, DEFAULT_NETWORK_THREAD_POOL_SIZE, cacheUsed);
    }
Run Code Online (Sandbox Code Playgroud)

然后,在内部public <T> Request<T> add(Request<T> request) {,您检查如下:

        // If the request is uncacheable, skip the cache queue and go straight to the network.
        if (!request.shouldCache() || !mCacheUsed) {
            mNetworkQueue.add(request);
            return request;
        }
Run Code Online (Sandbox Code Playgroud)

第二个文件 Volley.java:

public static RequestQueue newRequestQueue(Context context, HttpStack stack, boolean cacheUsed) {
        File cacheDir = new File(context.getCacheDir(), DEFAULT_CACHE_DIR);

        String userAgent = "volley/0";
        try {
            String packageName = context.getPackageName();
            PackageInfo info = context.getPackageManager().getPackageInfo(packageName, 0);
            userAgent = packageName + "/" + info.versionCode;
        } catch (NameNotFoundException e) {
        }

        if (stack == null) {
            if (Build.VERSION.SDK_INT >= 9) {
                stack = new HurlStack();
            } else {
                // Prior to Gingerbread, HttpUrlConnection was unreliable.
                // See: http://android-developers.blogspot.com/2011/09/androids-http-clients.html
                stack = new HttpClientStack(AndroidHttpClient.newInstance(userAgent));
            }
        }

        Network network = new BasicNetwork(stack);

        RequestQueue queue = new RequestQueue(new DiskBasedCache(cacheDir), network, cacheUsed);
        queue.start();

        return queue;
    }

public static RequestQueue newRequestQueue(Context context, boolean cacheUsed) {
        return newRequestQueue(context, null, cacheUsed);
    }
Run Code Online (Sandbox Code Playgroud)

最后,在MainActivity中,例如:

如果想使用可用的缓存:

RequestQueue requestQueue = Volley.newRequestQueue(this, true); 
Run Code Online (Sandbox Code Playgroud)

如果不想使用可用缓存:

RequestQueue requestQueue = Volley.newRequestQueue(this, false); 
Run Code Online (Sandbox Code Playgroud)

选项#2:

请求.java:

添加类变量public boolean mSkipAvailableCache = false;

请求队列.java:

在里面public <T> Request<T> add(Request<T> request),您检查如下:

        // If the request is uncacheable, skip the cache queue and go straight to the network.
        if (!request.shouldCache() || request.mSkipAvailableCache) {
            mNetworkQueue.add(request);
            return request;
        }
Run Code Online (Sandbox Code Playgroud)

MainActivity.java: 可以设置

jsonArrayRequest.mSkipAvailableCache = true;
Run Code Online (Sandbox Code Playgroud)

不会使用可用的缓存。希望这可以帮助!