$wg (wget) is caching the request?

$wg (wget) is caching the request when called with the same url and other data paths?

I want to display 8 text (labels) with data from the same JSON url source!

$wg("myurl.com",json,".owner")$
$wg("myurl.com",json,".address")$
$wg("myurl.com",json,".phone")$

Is there a better way to make a single url request, save it and use it for other 7 labels text?

Thanks,
Teo

When you call wg() that way the json is parsed once and cached so you can safely use the same url in as many lines as you want without any performance decrease. Also json path query is cached in case you use it more than once in the same preset.

Wg will download the content again only when network timeout has been reached (as per app settings) and remote content is expired (as per http cache headers).

Just perfect, as it should be! Nice work, very useful app! Congratulations!