diff --git a/CMS-SC-Data/obj/Debug/CMS-SC-Data.csprojResolveAssemblyReference.cache b/CMS-SC-Data/obj/Debug/CMS-SC-Data.csprojResolveAssemblyReference.cache
index 40f5810..add01bf 100644
Binary files a/CMS-SC-Data/obj/Debug/CMS-SC-Data.csprojResolveAssemblyReference.cache and b/CMS-SC-Data/obj/Debug/CMS-SC-Data.csprojResolveAssemblyReference.cache differ
diff --git a/CMS_SC/About.aspx b/CMS_SC/About.aspx
index 62dde8b..455803f 100644
--- a/CMS_SC/About.aspx
+++ b/CMS_SC/About.aspx
@@ -53,10 +53,7 @@
<%--3 days ago--%>
-
- - pareto chiamate x browser size
- - dati globali (uptime globale, da refresh, num chiamate (a redis? a iis?)
-
+ <%: paretoBrowserSize %>
<%--Donec id elit non mi porta.--%>
diff --git a/CMS_SC/About.aspx.cs b/CMS_SC/About.aspx.cs
index 779d9ce..1cf1219 100644
--- a/CMS_SC/About.aspx.cs
+++ b/CMS_SC/About.aspx.cs
@@ -3,6 +3,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
+using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
@@ -70,7 +71,23 @@ namespace CMS_SC
testo += string.Format("Reset Vocabolario: {0} --> {1}", recPrev, recPost);
}
}
- lblOut.Text = testo;
+ lblOut.Text = testo;
+ }
+ ///
+ /// Restitusice l'elenco pareto (decrescente) delle dimensioni browser registrate
+ ///
+ public string paretoBrowserSize
+ {
+ get
+ {
+ StringBuilder sb = new StringBuilder();
+ string redHash = memLayer.ML.redHash("COUNT:wh:");
+ int numRec = memLayer.ML.redCountKey(redHash);
+ Dictionary kvp = memLayer.ML.redGetHashDict(redHash);
+ sb.AppendLine(string.Format("Trovate {0} combinazioni", numRec));
+
+ return sb.ToString();
+ }
}
public string mainAssembly
{
@@ -125,7 +142,7 @@ namespace CMS_SC
{
get
{
- int numLib = 0;;
+ int numLib = 0; ;
try
{
AssemblyName[] referencedAssemblyNames = assembly.GetReferencedAssemblies();
diff --git a/CMS_SC/bin/CMS-SC-Data.dll b/CMS_SC/bin/CMS-SC-Data.dll
index 74104cf..9866107 100644
Binary files a/CMS_SC/bin/CMS-SC-Data.dll and b/CMS_SC/bin/CMS-SC-Data.dll differ
diff --git a/CMS_SC/bin/SteamWare.dll b/CMS_SC/bin/SteamWare.dll
index 1cb8a8a..22a12b3 100644
Binary files a/CMS_SC/bin/SteamWare.dll and b/CMS_SC/bin/SteamWare.dll differ