using System;
using System.Collections.Generic;
using System.Linq;
using Systehttp://m.Text.Json;
using StackExchange.Redis;
class Program
{
public static void Main(string[] args)
{
REDISCHK nmm = new REDISCHK();
nmm.RUN();
}
}
class REDISCHK
{
public void RUN()
{
RedisStore redis = new RedisStore("localhost:6379");
/*---------------------------------------------------------------------------
// key, value로 저장
redis.SetValue("test1", "ans-test1");
// key로 value를 찾는다.
//Console.WriteLine(redis.GetValue("test1"));
---------------------------------------------------------------------------*/
/*
FILE을 읽어서, KEY=ifReceiver.sender
VALUE=formatText
*/
}
}
'c# 언어' 카테고리의 다른 글
json 데이타를 c# 구조체 모델링 코드화 해주는 사이트 (0) | 2024.04.01 |
---|---|
json 데이타를 c# 구조체 모델링 코드화 해주는 사이트 (0) | 2024.03.31 |
(1)라이선스 에러 발생시 대처 방법 안내/(2)마이그레이션 방법 (0) | 2024.03.07 |
windows process 부모,자식 프로세스개념 (0) | 2024.02.02 |
visual studio offline 2019->2022 설치 (0) | 2024.01.08 |