Refresh progetto
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -162,7 +162,7 @@
|
||||
</site>
|
||||
<site name="ScheMe" id="2">
|
||||
<application path="/" applicationPool="Clr4IntegratedAppPool">
|
||||
<virtualDirectory path="/" physicalPath="C:\Users\samuele.steamw\Documents\Visual Studio 2017\Projects\ScheMe\ScheMe-PIC" />
|
||||
<virtualDirectory path="/" physicalPath="C:\Users\samuele.steamw\Documents\Visual Studio 2017\Projects\ScheMe-SP\ScheMe-SP" />
|
||||
</application>
|
||||
<bindings>
|
||||
<binding protocol="http" bindingInformation="*:64430:localhost" />
|
||||
|
||||
Binary file not shown.
@@ -7,8 +7,8 @@
|
||||
<!--<add name="ScheMe_Data.Properties.Settings.ScheMeConnectionString" connectionString="Data Source=SQL-STEAM\SQL2012;Initial Catalog=ScheMe-AFA;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient"/>
|
||||
<add name="ScheMe_Data.Properties.Settings.ScheMe_filesConnectionString" connectionString="Data Source=SQL-STEAM\SQL2012;Initial Catalog=ScheMe-AFA_files;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient"/>-->
|
||||
<!--VERSIONE SP-->
|
||||
<add name="ScheMe_Data.Properties.Settings.ScheMeConnectionString" connectionString="Data Source=SQL-STEAM\SQL2012;Initial Catalog=ScheMe-SP;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient"/>
|
||||
<add name="ScheMe_Data.Properties.Settings.ScheMe_filesConnectionString" connectionString="Data Source=SQL-STEAM\SQL2012;Initial Catalog=ScheMe-SP_files;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient"/>
|
||||
<add name="ScheMe_Data.Properties.Settings.ScheMeConnectionString" connectionString="Data Source=SQL-STEAM\SQL2012;Initial Catalog=ScheMe-PIC;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient"/>
|
||||
<add name="ScheMe_Data.Properties.Settings.ScheMe_filesConnectionString" connectionString="Data Source=SQL-STEAM\SQL2012;Initial Catalog=ScheMe-PIC_files;Persist Security Info=True;User ID=sa;Password=keyhammer" providerName="System.Data.SqlClient"/>
|
||||
</connectionStrings>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/>
|
||||
|
||||
Binary file not shown.
@@ -4109,6 +4109,11 @@
|
||||
forza lo svuotamento delle tabelle indicate come in cache...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.redHash(System.String)">
|
||||
<summary>
|
||||
Nome della variabile HASH da utilizzare (dato CodModulo / Server / DB impiegato da funzionalita' DbConfig) + keyName richiesto...
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:SteamWare.memLayer.lazyConnection">
|
||||
<summary>
|
||||
Connessione lazy a redis...
|
||||
@@ -4183,6 +4188,13 @@
|
||||
<param name="key"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.redHashPresentSz(System.String)">
|
||||
<summary>
|
||||
Verifica se ci siano valori nella hash indicata (string)
|
||||
</summary>
|
||||
<param name="key"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.redGetHash(System.String)">
|
||||
<summary>
|
||||
Recupera tutti i valori dalla hash
|
||||
@@ -4190,6 +4202,21 @@
|
||||
<param name="hashKey"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.redGetHashDict(System.String)">
|
||||
<summary>
|
||||
Recupera tutti i valori dalla hash in formato Dictionary
|
||||
</summary>
|
||||
<param name="hashKey"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.redGetHashField(System.String,System.String)">
|
||||
<summary>
|
||||
Recupera UN SINGOLO VALORE dalla hash per un dato field
|
||||
</summary>
|
||||
<param name="hashKey"></param>
|
||||
<param name="hashField"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.redSaveHash(System.String,System.Collections.Generic.KeyValuePair{System.String,System.String}[])">
|
||||
<summary>
|
||||
Salvataggio di una hash di valori
|
||||
@@ -4198,6 +4225,14 @@
|
||||
<param name="hashFields">valori</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.redSaveHashDict(System.String,System.Collections.Generic.Dictionary{System.String,System.String})">
|
||||
<summary>
|
||||
Salvataggio di una hash di valori in formato Dictionary
|
||||
</summary>
|
||||
<param name="hashKey">chiave</param>
|
||||
<param name="hashFields">valori</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.redSaveHash(System.String,System.Collections.Generic.KeyValuePair{System.String,System.String}[],System.Double)">
|
||||
<summary>
|
||||
Salvataggio di una hash di valori
|
||||
@@ -4207,6 +4242,15 @@
|
||||
<param name="expireSeconds">scadenza preimpostata hash (secondi) | defaoult = -1 (non scade)</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.redSaveHashDict(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Double)">
|
||||
<summary>
|
||||
Salvataggio di una hash di valori in formato Dictionary
|
||||
</summary>
|
||||
<param name="hashKey">chiave</param>
|
||||
<param name="hashFields">valori</param>
|
||||
<param name="expireSeconds">scadenza preimpostata hash (secondi) | defaoult = -1 (non scade)</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.redDelKey(System.String)">
|
||||
<summary>
|
||||
Elimina una key (hash, string)
|
||||
@@ -4221,6 +4265,13 @@
|
||||
<param name="keyPattern">** = tutti</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:SteamWare.memLayer.redCountKey(System.String)">
|
||||
<summary>
|
||||
Conta num oggetti cache redis che rispondono a pattern
|
||||
</summary>
|
||||
<param name="keyPattern">** = tutti</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:SteamWare.memLayer.numRecRedis">
|
||||
<summary>
|
||||
Restituisce numero record in Redis DB
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user