Skip to content

Commit

Permalink
Changed "add an item" to "put an item"
Browse files Browse the repository at this point in the history
  • Loading branch information
treeder committed Apr 1, 2013
1 parent 3e630cd commit 3024bc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cache/reference/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ IronCache provides a REST/HTTP API to allow you to interact programmatically wit
<tr><td>/projects/<span class="project_id variable">{Project ID}</span>/caches/<span class="cache_name variable">{Cache Name}</span></td><td>GET</td><td><a href="#get_info_about_a_cache" title="Get Info About a Cache">Get Info About a Cache</a></td></tr>
<tr><td>/projects/<span class="project_id variable">{Project ID}</span>/caches/<span class="cache_name variable">{Cache Name}</span></td><td>DELETE</td><td><a href="#delete_a_cache" title="Delete a Cache">Delete a Cache</a></td></tr>
<tr><td>/projects/<span class="project_id variable">{Project ID}</span>/caches/<span class="cache_name variable">{Cache Name}</span>/clear</td><td>POST</td><td><a href="#clear_a_cache" title="Clear a Cache">Clear a Cache</a></td></tr>
<tr><td>/projects/<span class="project_id variable">{Project ID}</span>/caches/<span class="cache_name variable">{Cache Name}</span>/items/<span class="item_key variable">{Key}</span></td><td>PUT</td><td><a href="#add_an_item_to_a_cache" title="Add an Item to a Cache">Add an Item to a Cache</a></td></tr>
<tr><td>/projects/<span class="project_id variable">{Project ID}</span>/caches/<span class="cache_name variable">{Cache Name}</span>/items/<span class="item_key variable">{Key}</span></td><td>PUT</td><td><a href="#put_an_item_into_a_cache" title="Put an Item into a Cache">Put an Item into a Cache</a></td></tr>
<tr><td>/projects/<span class="project_id variable">{Project ID}</span>/caches/<span class="cache_name variable">{Cache Name}</span>/items/<span class="item_key variable">{Key}</span>/increment</td><td>POST</td><td><a href="#increment_an_items_value" title="Increment an Item's value">Increment an Item's value</a></td></tr>
<tr><td>/projects/<span class="project_id variable">{Project ID}</span>/caches/<span class="cache_name variable">{Cache Name}</span>/items/<span class="item_key variable">{Key}</span></td><td>GET</td><td><a href="#get_an_item_from_a_cache" title="Get an Item from a Cache">Get an Item from a Cache</a></td></tr>
<tr><td>/projects/<span class="project_id variable">{Project ID}</span>/caches/<span class="cache_name variable">{Cache Name}</span>/items/<span class="variable item_key">{Key}</span></td><td>DELETE</td><td><a href="#delete_an_item_from_a_cache" title="Delete an Item from a Cache">Delete an Item from a Cache</a></td></tr>
Expand Down Expand Up @@ -235,9 +235,9 @@ POST /projects/<span class="variable project_id">{Project ID}</span>/caches/<spa
}
{% endhighlight %}

## Add an Item to a Cache
## Put an Item into a Cache

This call adds or set an item in the cache.
This call puts an item into a cache.

### Endpoint

Expand Down

0 comments on commit 3024bc2

Please sign in to comment.