gpt4 book ai didi

redis - Redis如何存储复杂的数据?

转载 作者:可可西里 更新时间:2023-11-01 11:24:29 26 4
gpt4 key购买 nike

我想在Redis数据库中以如下方式存储数据:

 { _id: 5b3a60cdccbdf81bcc5343e6,
id: 5b3a60cdccbdf81bcc5343e5,
position: 'Web dveloper',
type: 'Contract',
Skills: 'html, bootstrap,php',
location: 'Boston',
job_id: 1,
Experience: '0-6 months',
Description: 'Developer for websites and web apps',
__v: 0 },
{ _id: 5b3a6151ccbdf81bcc5343e8,
id: 5b3a6151ccbdf81bcc5343e7,
position: 'Data analyst',
type: 'contract',
Skills: 'big data, hadoop,python',
location: 'boston',
job_id: 2,
Experience: '1yr',
Description: 'for analysing incoming data',
__v: 0 },
{ _id: 5b3a6207ccbdf81bcc5343ea,
id: 5b3a6207ccbdf81bcc5343e9,
position: 'Content Writer',
type: 'Permanent',
Skills: 'Technical wirtting,Custmer engagement',
location: 'new jersey',
job_id: 3,
Experience: '0-6 months',
Description: 'for writting website content',
__v: 0 },
{ _id: 5b3a62c4ccbdf81bcc5343ec,
id: 5b3a62c4ccbdf81bcc5343eb,
position: 'node js specialist',
type: 'Permanent',
Skills: 'node js ,express js , mean stack',
location: 'boston',
job_id: 4,
Experience: '1yr',
Description: 'for the web apps',
__v: 0 },
{ _id: 5b3a6362ccbdf81bcc5343ee,
id: 5b3a6362ccbdf81bcc5343ed,
position: 'database expert',
type: 'temporary',
Skills: 'sql , no sql, mysql,sql server,mongo db',
location: 'boston',
job_id: 5,
Experience: '2 yrs',
Description: 'for desinging and maintaing databases',
__v: 0 },
{ _id: 5b3a8639c8323b2cfc179969,
id: 5b3a8639c8323b2cfc179968,
position: 'Social media manager',
type: 'Permanent',
Skills: 'Social media marketing,Digital marketing',
location: 'Boston',
job_id: 4,
Experience: '1yr',
Description: 'For managing company socail media accounts',
__v: 0 }

我浏览了 Redis 官方文档,但一无所获。谁能指导我可以使用什么结构来存储以及如何在表中检索这些数据?

最佳答案

您可以用来存储数据的备选方案之一是 Redis Hash data结构体。使用 Redis 哈希结构,您可以使用 id 作为键存储您的实体,然后使用 HMSET command 将剩余字段映射到 Redis 哈希中.

推荐的 Node.js 客户端是 npm Redis package .这将提供与 Redis 交互所需的所有功能。

最终,您的查询模式将决定数据的最佳结构。使用散列是解决该问题的一种非常基本的实体映射方法,但它可能不是构建数据的最佳方法。根据您计划如何使用数据,可能有更有效的方法来构建数据。

关于redis - Redis如何存储复杂的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51218817/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com