Skip to content

Commit 024e010

Browse files
authored
Merge pull request #18275 from rmcmurray/20170721
Adding new articles for Spring Boot with Redis and Cosmos DB
2 parents 41c08af + 842798a commit 024e010

File tree

47 files changed

+798
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+798
-4
lines changed
Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
---
2+
title: Managing Redis Caches using the Azure Explorer for Eclipse | Microsoft Docs
3+
description: Learn how to manage your Azure redis caches by using the Azure Explorer for Eclipse.
4+
services: ''
5+
documentationcenter: java
6+
author: rmcmurray
7+
manager: erikre
8+
editor: ''
9+
10+
ms.assetid:
11+
ms.service: multiple
12+
ms.workload: na
13+
ms.tgt_pltfrm: multiple
14+
ms.devlang: Java
15+
ms.topic: article
16+
ms.date: 06/14/2017
17+
ms.author: robmcm
18+
19+
---
20+
21+
# Managing Redis Caches using the Azure Explorer for Eclipse
22+
23+
The Azure Explorer, which is part of the Azure Toolkit for Eclipse, provides Java developers with an easy-to-use solution for managing redis caches in their Azure account from inside the Eclipse IDE.
24+
25+
[!INCLUDE [azure-toolkit-for-eclipse-prerequisites](../includes/azure-toolkit-for-eclipse-prerequisites.md)]
26+
27+
[!INCLUDE [azure-toolkit-for-eclipse-show-azure-explorer](../includes/azure-toolkit-for-eclipse-show-azure-explorer.md)]
28+
29+
## Create a Redis Cache by using Eclipse
30+
31+
The following steps walk you through the steps to create a redis cache using the Azure Explorer.
32+
33+
1. Sign in to your Azure account using the steps in the [Sign In Instructions for the Azure Toolkit for Eclipse] article.
34+
35+
1. In the **Azure Explorer** tool window, expand the **Azure** node, right-click **Redis Caches**, and then click **Create Redis Cache**.
36+
37+
![Create Redis Cache Menu][CR01]
38+
39+
1. When the **New Redis Cache** dialog box appears, specify the following options:
40+
41+
![Create New Redis Cache Dialog Box][CR02]
42+
43+
a. **DNS Name**: Specifies the DNS subdomain for the new redis cache, which is prepended to ".redis.cache.windows.net"; for example: *wingtiptoys.redis.cache.windows.net*.
44+
45+
b. **Subscription**: Specifies the Azure subscription you want to use for the new redis cache.
46+
47+
c. **Resource Group**: Specifies the resource group for your redis cache; you need to choose one of the following options:
48+
* **Create New**: Specifies that you want to create a new resource group.
49+
* **Use Existing**: Specifies that you will choose from a list of resource groups associated with your Azure account.
50+
51+
d. **Location**: Specifies the location where your redis cache is created; for example, *West US*.
52+
53+
e. **Pricing Tier**: Specifies which pricing tier your redis cache uses; this setting determines the number of client connections. (For more information, see [Redis Cache Pricing].)
54+
55+
f. **Non-SSL port**: Specifies whether your redis cache allows non-SSL connections; by default, only SSL connections are allowed.
56+
57+
1. When you have specified all your redis cache settings, click **OK**.
58+
59+
After your redis cache has been created, it will be displayed in the Azure Explorer.
60+
61+
![Redis Cache in Azure Explorer][CR03]
62+
63+
> [!NOTE]
64+
>
65+
> For more information about configuring your Azure redis cache settings, see [How to configure Azure Redis Cache].
66+
>
67+
68+
## Display the properties for your Redis Cache in Eclipse
69+
70+
1. In the Azure Explorer, right-click your redis cache and click **Show properties**.
71+
72+
![Azure Explorer context menu to display properties for a redis cache][SP01]
73+
74+
1. The Azure Explorer displays the properties for your redis cache.
75+
76+
![Redis cache properties][SP02]
77+
78+
## Delete your Redis Cache by using Eclipse
79+
80+
1. In the Azure Explorer, right-click your redis cache and click **Delete**.
81+
82+
![Azure Explorer context menu to delete a redis cache][DE01]
83+
84+
1. Click **OK** when prompted to delete your redis cache.
85+
86+
![Delete redis cache prompt][DE02]
87+
88+
## Next steps
89+
90+
[!INCLUDE [azure-toolkit-additional-resources](../includes/azure-toolkit-additional-resources.md)]
91+
92+
For more information about Azure redis caches, configuration settings and pricing, see the following links:
93+
94+
* [Azure Redis Cache]
95+
* [Redis Cache Documentation]
96+
* [Redis Cache Pricing]
97+
* [How to configure Azure Redis Cache]
98+
99+
<!-- URL List -->
100+
101+
[Redis Cache Pricing]: https://azure.microsoft.com/pricing/details/cache/
102+
[Azure Redis Cache]: https://azure.microsoft.com/services/cache/
103+
[Redis Cache Documentation]: ./redis-cache/index.md
104+
[How to configure Azure Redis Cache]: ./redis-cache/cache-configure.md
105+
[Sign In Instructions for the Azure Toolkit for Eclipse]: ./azure-toolkit-for-eclipse-sign-in-instructions.md
106+
107+
<!-- IMG List -->
108+
109+
[CR01]: ./media/azure-toolkit-for-eclipse-managing-redis-caches-using-azure-explorer/CR01.png
110+
[CR02]: ./media/azure-toolkit-for-eclipse-managing-redis-caches-using-azure-explorer/CR02.png
111+
[CR03]: ./media/azure-toolkit-for-eclipse-managing-redis-caches-using-azure-explorer/CR03.png
112+
113+
[SP01]: ./media/azure-toolkit-for-eclipse-managing-redis-caches-using-azure-explorer/SP01.png
114+
[SP02]: ./media/azure-toolkit-for-eclipse-managing-redis-caches-using-azure-explorer/SP02.png
115+
116+
[DE01]: ./media/azure-toolkit-for-eclipse-managing-redis-caches-using-azure-explorer/DE01.png
117+
[DE02]: ./media/azure-toolkit-for-eclipse-managing-redis-caches-using-azure-explorer/DE02.png
Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
---
2+
title: Managing Redis Caches using the Azure Explorer for IntelliJ | Microsoft Docs
3+
description: Learn how to manage your Azure redis caches by using the Azure Explorer for IntelliJ.
4+
services: ''
5+
documentationcenter: java
6+
author: rmcmurray
7+
manager: erikre
8+
editor: ''
9+
10+
ms.assetid:
11+
ms.service: multiple
12+
ms.workload: na
13+
ms.tgt_pltfrm: multiple
14+
ms.devlang: Java
15+
ms.topic: article
16+
ms.date: 06/14/2017
17+
ms.author: robmcm
18+
19+
---
20+
21+
# Managing Redis Caches using the Azure Explorer for IntelliJ
22+
23+
The Azure Explorer, which is part of the Azure Toolkit for IntelliJ, provides Java developers with an easy-to-use solution for managing redis caches in their Azure account from inside the IntelliJ IDE.
24+
25+
[!INCLUDE [azure-toolkit-for-intellij-prerequisites](../includes/azure-toolkit-for-intellij-prerequisites.md)]
26+
27+
[!INCLUDE [azure-toolkit-for-intellij-show-azure-explorer](../includes/azure-toolkit-for-intellij-show-azure-explorer.md)]
28+
29+
## Create a Redis Cache by using IntelliJ
30+
31+
The following steps walk you through the steps to create a redis cache using the Azure Explorer.
32+
33+
1. Sign in to your Azure account using the steps in the [Sign In Instructions for the Azure Toolkit for IntelliJ] article.
34+
35+
1. In the **Azure Explorer** tool window, expand the **Azure** node, right-click **Redis Caches**, and then click **Create Redis Cache**.
36+
37+
![Create Redis Cache menu][CR01]
38+
39+
1. When the **New Redis Cache** dialog box appears, specify the following options:
40+
41+
![Create New Redis Cache dialog box][CR02]
42+
43+
a. **DNS Name**: Specifies the DNS subdomain for the new redis cache, which are prepended to ".redis.cache.windows.net"; for example: *wingtiptoys.redis.cache.windows.net*.
44+
45+
b. **Subscription**: Specifies the Azure subscription you want to use for the new redis cache.
46+
47+
c. **Resource Group**: Specifies the resource group for your redis cache; you need to choose one of the following options:
48+
* **Create New**: Specifies that you want to create a new resource group.
49+
* **Use Existing**: Specifies that you will choose from a list of resource groups associated with your Azure account.
50+
51+
d. **Location**: Specifies the location where your redis cache is created; for example, *West US*.
52+
53+
e. **Pricing Tier**: Specifies which pricing tier your redis cache uses; this setting determines the number of client connections. (For more information, see [Redis Cache Pricing].)
54+
55+
f. **Non-SSL port**: Specifies whether your redis cache allows non-SSL connections; by default, only SSL connections are allowed.
56+
57+
1. When you have specified all your redis cache settings, click **OK**.
58+
59+
After your redis cache has been created, it will be displayed in the Azure Explorer.
60+
61+
![Redis Cache in Azure Explorer][CR03]
62+
63+
> [!NOTE]
64+
>
65+
> For more information about configuring your Azure redis cache settings, see [How to configure Azure Redis Cache].
66+
>
67+
68+
## Display the properties for your Redis Cache in IntelliJ
69+
70+
1. In the Azure Explorer, right-click your redis cache and click **Show properties**.
71+
72+
![Azure Explorer context menu to display properties for a redis cache][SP01]
73+
74+
1. The Azure Explorer displays the properties for your redis cache.
75+
76+
![Redis cache properties][SP02]
77+
78+
## Delete your Redis Cache by using IntelliJ
79+
80+
1. In the Azure Explorer, right-click your redis cache and click **Delete**.
81+
82+
![Azure Explorer context menu to delete a redis cache][DE01]
83+
84+
1. Click **Yes** when prompted to delete your redis cache.
85+
86+
![Delete redis cache prompt][DE02]
87+
88+
## Next steps
89+
90+
[!INCLUDE [azure-toolkit-additional-resources](../includes/azure-toolkit-additional-resources.md)]
91+
92+
For more information about Azure redis caches, configuration settings and pricing, see the following links:
93+
94+
* [Azure Redis Cache]
95+
* [Redis Cache Documentation]
96+
* [Redis Cache Pricing]
97+
* [How to configure Azure Redis Cache]
98+
99+
<!-- URL List -->
100+
101+
[Redis Cache Pricing]: https://azure.microsoft.com/pricing/details/cache/
102+
[Azure Redis Cache]: https://azure.microsoft.com/services/cache/
103+
[Redis Cache Documentation]: ./redis-cache/index.md
104+
[How to configure Azure Redis Cache]: ./redis-cache/cache-configure.md
105+
[Sign In Instructions for the Azure Toolkit for IntelliJ]: ./azure-toolkit-for-intellij-sign-in-instructions.md
106+
107+
<!-- IMG List -->
108+
109+
[CR01]: ./media/azure-toolkit-for-intellij-managing-redis-caches-using-azure-explorer/CR01.png
110+
[CR02]: ./media/azure-toolkit-for-intellij-managing-redis-caches-using-azure-explorer/CR02.png
111+
[CR03]: ./media/azure-toolkit-for-intellij-managing-redis-caches-using-azure-explorer/CR03.png
112+
113+
[SP01]: ./media/azure-toolkit-for-intellij-managing-redis-caches-using-azure-explorer/SP01.png
114+
[SP02]: ./media/azure-toolkit-for-intellij-managing-redis-caches-using-azure-explorer/SP02.png
115+
116+
[DE01]: ./media/azure-toolkit-for-intellij-managing-redis-caches-using-azure-explorer/DE01.png
117+
[DE02]: ./media/azure-toolkit-for-intellij-managing-redis-caches-using-azure-explorer/DE02.png

articles/cosmos-db/TOC.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,8 @@
283283
href: powerbi-visualize.md
284284
- name: Leverage the ODBC driver for data visualization
285285
href: odbc-driver.md
286+
- name: Use Spring Boot Starter with DocumentDB APIs
287+
href: documentdb-java-spring-boot-starter-with-cosmos-db.md
286288
- name: Reference
287289
items:
288290
- name: Code samples
@@ -321,8 +323,6 @@
321323
href: https://azure.microsoft.com/roadmap/
322324
- name: Pricing
323325
href: https://azure.microsoft.com/pricing/details/cosmos-db/
324-
- name: Pricing calculator
325-
href: https://azure.microsoft.com/pricing/calculator/
326326
- name: FAQ
327327
href: faq.md
328328
- name: Stack Overflow

0 commit comments

Comments
 (0)