Hi,

I have a scenario where I need to cache individual items from array. Following 
json object illustrates the request.

{
        "skus": [
    {
      "qty": 1,
      "sku": "sku_1"
    },
    {
      "qty": 10,
      "sku": "sku_2"
    },
    {
      "qty": 4,
      "sku": "sku_3"
    }
  ],
  "plant":"L010",
  "soldTo":"12323",
  "shipTo":"4323534"
}

For this request it will return availability for each item. Here I need to 
cache individual sku and plant combination(plant_sku) against price and 
availability. 

I have managed to cache for the whole skus and plant as below.


But as I described above I need to cache for the individual items of the array.

Could you please explain me how can I achieve this?

Thank you,
Kanishka
_______________________________________________
Dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/dev

Reply via email to