/ironcache-d

IronCache service wrapper by curl.

Primary LanguageDBoost Software License 1.0BSL-1.0

IronCache service wrapper by curl.

See_also

License

Boost License 1.0

Authors

karronoli

Copyright

karronoli 2015-

Date

2015-Feb-15

Examples

   import iron.cache;
   import std.json;
   const prjid = "...", token = "...";
   auto iron = new IronCache(prjid, token);
   const name = "名前", key = "キー", val = "";
   iron.put(name, key, val);
   JSONValue json = iron.get(name, key);
   assert(json["value"].str == val);