2016-04-29 3 views
3

J'ai installé le serveur Redis sur mon ordinateur Windows 7 avec succès. A mis la main rapidement, tout fonctionne comme prévu. (installé à l'aide du programme d'installation MSI de https://github.com/MSOpenTech/redis)ConnectionMultiplexer.Connect interrompt la connexion au serveur redis

J'utilise le client redis StackExchange C# pour me connecter au serveur Redis.
RedisClient

P.S. : Je n'ai pas construit l'application sur ma machine comme je suis VS 2010 et qui a jeté une erreur. Donc, je l'ai installé le package NuGet et maintenant mon application de test en C# a l'assemblée StackExchange.Redis

enter image description here

Mon application de la console est simple avec une seule ligne de code

ConnectionMultiplexer redis = ConnectionMultiplexer.Connect("localhost:6379,allowAdmin=true"); 

Il me donne une erreur:

System.AggregateException was unhandled 
    HResult=-2146233088 
    Message=One or more errors occurred. 
    Source=mscorlib 
    StackTrace: 
     at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions) 
     at System.Threading.Tasks.Task.Wait(Int32 millisecondsTimeout, CancellationToken cancellationToken) 
     at System.Threading.Tasks.Task.Wait(Int32 millisecondsTimeout) 
     at StackExchange.Redis.ConnectionMultiplexer.ConnectImpl(Func`1 multiplexerFactory, TextWriter log) in c:\TeamCity\buildAgent\work\3ae0647004edff78\StackExchange.Redis\StackExchange\Redis\ConnectionMultiplexer.cs:line 817 
     at StackExchange.Redis.ConnectionMultiplexer.Connect(String configuration, TextWriter log) in c:\TeamCity\buildAgent\work\3ae0647004edff78\StackExchange.Redis\StackExchange\Redis\ConnectionMultiplexer.cs:line 795 
     at testapp.Program.Main(String[] args) in D:\_Work\TestApp\Program.cs:line 64 
     at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) 
     at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) 
     at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() 
     at System.Threading.ThreadHelper.ThreadStart_Context(Object state) 
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) 
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) 
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) 
     at System.Threading.ThreadHelper.ThreadStart() 
    InnerException: System.Security.VerificationException 
     HResult=-2146233075 
     Message=Method System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[System.Boolean].AwaitUnsafeOnCompleted: type argument 'Microsoft.Runtime.CompilerServices.ConfiguredTaskAwaitable`1+ConfiguredTaskAwaiter[StackExchange.Redis.ServerEndPoint]' violates the constraint of type parameter 'TAwaiter'. 
     Source=StackExchange.Redis 
     StackTrace: 
      at StackExchange.Redis.ConnectionMultiplexer.<ReconfigureAsync>d__2d.MoveNext() 
      at System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[TStateMachine](TStateMachine& stateMachine) 
      at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.Start[TStateMachine](TStateMachine& stateMachine) 
      at StackExchange.Redis.ConnectionMultiplexer.ReconfigureAsync(Boolean first, Boolean reconfigureAll, TextWriter log, EndPoint blame, String cause, Boolean publishReconfigure, CommandFlags publishReconfigureFlags) 
      at StackExchange.Redis.ConnectionMultiplexer.<>c__DisplayClass29.<ConnectImpl>b__26() in c:\TeamCity\buildAgent\work\3ae0647004edff78\StackExchange.Redis\StackExchange\Redis\ConnectionMultiplexer.cs:line 815 
      at System.Threading.Tasks.Task`1.InnerInvoke() 
      at System.Threading.Tasks.Task.Execute() 
     InnerException: 
+0

J'ai la même erreur. Je pense que c'est parce que j'utilise SharpDevelop, mais ne semble pas être un problème de l'IDE. Mais aucune solution jusqu'à présent ... – flohack

+0

vous voulez dire en construisant? parce que je parle d'utiliser la DLL et d'instancier le client dans une application de console. – ankur

Répondre