gpt4 book ai didi

asp.net-mvc - 如何将SQL表数据导入Redis缓存?

转载 作者:IT王子 更新时间:2023-10-29 06:03:36 29 4
gpt4 key购买 nike

我有下表MYTestTable

ID  Name Location
1 aaa IND
2 bbb US
3 ccc UK

现在我想将这些数据保存到Redis缓存(具有相同的表结构),我该如何做到这一点?

I tried google but I only found examples with Key-Value Pair :(

Can any one give me good thread which is useful , Thanksin advance.using LINQ to SQL for database connection.

最佳答案

Redis 不是关系数据库,这就是您只找到键值示例的原因。

Redis is an open source, BSD licensed, advanced key-value cache and store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets, sorted sets, bitmaps and hyperloglogs. in http://redis.io/

因此,如果您仍然想存储数据,请知道 不提供查询的 SQL 语法,这是一种方法:

  1. 找到您的 key
  2. 使用 key 作为 键和字符串化

示例:

> set mytest.1 "aaa : IND"
OK
> set mytest.2 "bbb : US"
OK
> set mytest.3 "ccc : UK"
OK

要检索值,只需 GET 键:

> get mytest.2
"bbb : US"

正如您所看到的,没有列的概念,尽管您可以为这些创建一个条目,但如果您做到了这一点,我会重新评估 if 正是您所需要的。

希望这有帮助。

关于asp.net-mvc - 如何将SQL表数据导入Redis缓存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28860620/

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