Commit 10d97747 authored by 黄奎's avatar 黄奎

11

parent 6086a5f8
...@@ -84,6 +84,24 @@ namespace Edu.Cache.User ...@@ -84,6 +84,24 @@ namespace Edu.Cache.User
} }
/// <summary>
/// 设置缓存
/// </summary>
/// <param name="model"></param>
public static void SetOpenAIModelCache(string cacheKey, OpenAIModel model, int JwtExpirTime)
{
try
{
TimeSpan ts = GetExpirTime(JwtExpirTime);
redis.StringSet<OpenAIModel>(cacheKey, model, ts);
}
catch (Exception ex)
{
Common.Plugin.LogHelper.Write(ex, "SetOpenAIModelCache缓存设置失败");
}
}
/// <summary> /// <summary>
/// 获取缓存 /// 获取缓存
......
...@@ -298,9 +298,13 @@ namespace Edu.WebApi.Controllers.AI ...@@ -298,9 +298,13 @@ namespace Edu.WebApi.Controllers.AI
// 编码 JSON // 编码 JSON
var jsonData = data.ToString(); var jsonData = data.ToString();
var dataBytes = Encoding.UTF8.GetBytes(jsonData); var dataBytes = Encoding.UTF8.GetBytes(jsonData);
var returnModel = Cache.User.UserReidsCache.OpenAIGet(this.AppletUserInfo.AccountId + "_" + "LogId_" + addId); string cacheKey = this.AppletUserInfo.AccountId + "_" + "LogId_" + addId;
Console.WriteLine("PostAsync:CacheKey:{0}", cacheKey);
var returnModel = Cache.User.UserReidsCache.OpenAIGet(cacheKey);
Console.WriteLine("PostAsync:returnModel_1:{0}", Common.Plugin.JsonHelper.Serialize(returnModel));
if (returnModel != null) if (returnModel != null)
{ {
Console.WriteLine("PostAsync:returnModel_2:{0}", Common.Plugin.JsonHelper.Serialize(returnModel));
using (HttpClient client = new HttpClient()) using (HttpClient client = new HttpClient())
{ {
var requestContent = new ByteArrayContent(dataBytes); var requestContent = new ByteArrayContent(dataBytes);
...@@ -337,12 +341,12 @@ namespace Edu.WebApi.Controllers.AI ...@@ -337,12 +341,12 @@ namespace Edu.WebApi.Controllers.AI
} }
aiModule.SetAIUseLogModule(oldModel); aiModule.SetAIUseLogModule(oldModel);
} }
Cache.User.UserReidsCache.Set(this.AppletUserInfo.AccountId + "_" + "LogId_" + addId, returnModel, Common.Config.JwtExpirTime); Cache.User.UserReidsCache.SetOpenAIModelCache(cacheKey, returnModel, Common.Config.JwtExpirTime);
} }
else else
{ {
returnModel.Status = 3;//失败了 returnModel.Status = 3;//失败了
Cache.User.UserReidsCache.Set(this.AppletUserInfo.AccountId + "_" + "LogId_" + addId, returnModel, Common.Config.JwtExpirTime); Cache.User.UserReidsCache.SetOpenAIModelCache(cacheKey, returnModel, Common.Config.JwtExpirTime);
LogHelper.WriteInfo($"Error: {response.StatusCode}, {response.ReasonPhrase}"); LogHelper.WriteInfo($"Error: {response.StatusCode}, {response.ReasonPhrase}");
} }
} }
......
...@@ -2,4 +2,5 @@ ...@@ -2,4 +2,5 @@
echo ASPNETCORE_ENVIRONMENT=Development echo ASPNETCORE_ENVIRONMENT=Development
dotnet build dotnet build
start "Edu.WebApi" dotnet bin\Debug\netcoreapp3.1\Edu.WebApi.dll --urls http://0.0.0.0:5001 --ip="127.0.0.1" --port=5001 start "Edu.WebApi" dotnet bin\Debug\netcoreapp3.1\Edu.WebApi.dll --urls http://0.0.0.0:5001 --ip="127.0.0.1" --port=5001
dotnet Edu.WebApi.dll --urls http://0.0.0.0:5001 --ip="127.0.0.1" --port=5001
exit exit
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment