Skip to content

Commit 76f1aee

Browse files
Merge pull request #593 from wjohnsto/master
Adding real-time inventory tutorials to the sidebar
2 parents 703b60d + 96d064f commit 76f1aee

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

docs/howtos/solutions/index-solutions.mdx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,24 @@ Learn how to easily build, test and deploy code for common microservice and cach
111111
</div>
112112

113113
</div>
114+
115+
## Real-time Inventory
116+
117+
<div class="row">
118+
<div class="col">
119+
<RedisCard
120+
title="Available to Promise"
121+
description="Available to Promise in Real-time Inventory Using Redis"
122+
page="/howtos/solutions/real-time-inventory/available-to-promise"
123+
/>
124+
</div>
125+
126+
<div class="col">
127+
<RedisCard
128+
title="Real-time Local Inventory Search (GeoSpatial)"
129+
description="Real-time Local Inventory Search Using Redis"
130+
page="/howtos/solutions/real-time-inventory/local-inventory-search"
131+
/>
132+
</div>
133+
134+
</div>

docs/howtos/solutions/real-time-inventory/local-inventory-search/index-rti-local-inventory-search.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ The demo uses two collections:
8080
- **Product collection**: Stores product details like `productId`, `name`, `price`, `image`, and other details
8181
![product data](./images/product-data.png)
8282

83+
:::tip
84+
Download <u>[RedisInsight](https://redis.com/redis-enterprise/redis-insight/)</u> to view your Redis data or to play with raw Redis commands in the workbench. learn more about <u>[RedisInsight in tutorials](/explore/redisinsight/)</u>
85+
:::
86+
8387
- **StoresInventory collection**: Stores product quantity available at different local stores.
8488

8589
For demo purpose, we are using the below regions in New York, US as store locations. Products are mapped to these location stores with a `storeId` and `quantity`.

sidebars.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,14 @@ module.exports = {
489489
'howtos/solutions/microservices/caching/index-solutions-caching',
490490
]
491491
},
492+
{
493+
type: 'category',
494+
label: 'Real-time Inventory',
495+
items: [
496+
'howtos/solutions/real-time-inventory/available-to-promise/index-rti-available-to-promise',
497+
'howtos/solutions/real-time-inventory/local-inventory-search/index-rti-local-inventory-search',
498+
]
499+
},
492500
],
493501
},
494502
'howtos/redisearch/index-redisearch',

0 commit comments

Comments
 (0)