Buy Questpond's video subscriptions on
huge discount
.
Online: 4058
Home
Articles
Interviews
Forums
For Beginners
Popular Questions
ITIL Career Advice
PMP Career Advice
Career Advices
Codes
Videos
ASP.NET
ASP.NET MVC
Android Intel XDK
Sql Server
AngularJS
Bootstrap
Backbone.JS
MongoDB
LESS (CSS)
jQuery
WPF
WWF
SSIS
LightSwitch
Tutorials
News
ASP.NET MVC
|
Be Interview Ready
|
Top Performers
|
DNF MVP
|
Top Posts
|
Winners
|
Subscribe
|
Catalogs
Welcome Guest !
Register
Login
Home
>
Forums
>
C#
>
Loading ...
As can share data between multiple applications in memory
Posted by
Ricardor2708
under
C#
on 12/5/2012 |
Points: 10
| Views : 2257 | Status :
[Member]
| Replies : 4
Write New Post
|
Search Forums
|
Resolved Posts
|
Un Answered Posts
|
Forums Home
I need to know if you can share data in memory across multiple applications using C #, but not using FileMapping.
Reply
|
Reply with Attachment
Alert Moderator
Responses
Posted by:
Pavanandey
on: 12/6/2012
[Member]
Bronze
|
Points: 25
0
you can use Application State for storing date and that can be accessed across all the user
Thanks
Pavan Kumar
Mark Answer if this fits the need
Ricardor2708
, if this helps please
login
to
Mark As Answer
. |
Alert Moderator
Posted by:
Ricardor2708
on: 12/6/2012
[Member]
Starter
|
Points: 25
0
Hi thanks for replying,
I really need to know is how to expose a layer of memory data on data tables that can be updated from time to time and who are available for consultation in memory for faster access and query the database to each time.
Ricardor2708
, if this helps please
login
to
Mark As Answer
. |
Alert Moderator
Posted by:
Pavanandey
on: 12/7/2012
[Member]
Bronze
|
Points: 25
0
you can also use cache and set the time of expiration, once it is expired you can update the datatable.
System.Data.DataTable dt = new System.Data.DataTable;
Cache.Insert("Datatable", dt, null,DateTime.Now.AddDays(1), TimeSpan.FromDays(1));
Thanks
Pavan Kumar
Mark Answer if this fits the need
Ricardor2708
, if this helps please
login
to
Mark As Answer
. |
Alert Moderator
Posted by:
Sandhyab
on: 12/11/2012
[Member]
Starter
|
Points: 25
0
Use Session. If these projects are in different virtual directories which runs as different servers, it is not possible directly share the session in different server process.To share session in different application, you should use a state server.Maintain application state in global.asax files.
Thanks & Regadrs
Ricardor2708
, if this helps please
login
to
Mark As Answer
. |
Alert Moderator
Login to post response
Latest Posts
How to get the exact property name while getting error
(0)
PDB file is not showing Line Number in dot net application hosted on server
(0)
Both Strings morethan 5 letters in length end of the words one vowel and one consonent is different
(0)
how to check Any adjacent letters transposed between two strings(ex: JOHN, JHON)
(1)
can't receive data after success login ?
(1)
Implement Multi-Tenant in Azure Logic Apps
(0)
Why ASP.Net Core 7.0 Web API showing as Connection refused?
(0)
Iterating over columns of dataframe and print as rows in Python Django
(0)
More ...