@@ -239,7 +239,7 @@ public sealed class LoadedLuaScript
239
239
240
240
/// <summary>
241
241
/// <para>The SHA1 hash of ExecutableScript.</para>
242
- /// <para>This is sent to Redis instead of ExecutableScript during Evaluate and EvaluateAsync calls.</para>
242
+ /// <para>This is not sent to Redis, instead ExecutableScript is used during Evaluate and EvaluateAsync calls.</para>
243
243
/// </summary>
244
244
/// <remarks>Be aware that using hash directly is not resilient to Redis server restarts.</remarks>
245
245
[ EditorBrowsable ( EditorBrowsableState . Never ) ]
@@ -257,8 +257,8 @@ internal LoadedLuaScript(LuaScript original, byte[] hash)
257
257
/// <summary>
258
258
/// <para>Evaluates this LoadedLuaScript against the given database, extracting parameters for the passed in object if any.</para>
259
259
/// <para>
260
- /// This method sends the SHA1 hash of the ExecutableScript instead of the script itself .
261
- /// If the script has not been loaded into the passed Redis instance, it will fail.
260
+ /// This method evaluates the script itself and does not send the SHA-1 hash, generated by the server when loaded initially, in order to execute it .
261
+ /// If the script has not been loaded into the passed Redis instance, it will not fail.
262
262
/// </para>
263
263
/// </summary>
264
264
/// <param name="db">The redis database to evaluate against.</param>
@@ -275,8 +275,8 @@ public RedisResult Evaluate(IDatabase db, object? ps = null, RedisKey? withKeyPr
275
275
/// <summary>
276
276
/// <para>Evaluates this LoadedLuaScript against the given database, extracting parameters for the passed in object if any.</para>
277
277
/// <para>
278
- /// This method sends the SHA1 hash of the ExecutableScript instead of the script itself .
279
- /// If the script has not been loaded into the passed Redis instance, it will fail.
278
+ /// This method evaluates the script itself and does not send the SHA-1 hash, generated by the server when loaded initially, in order to execute it .
279
+ /// If the script has not been loaded into the passed Redis instance, it will not fail.
280
280
/// </para>
281
281
/// </summary>
282
282
/// <param name="db">The redis database to evaluate against.</param>
0 commit comments