I have a Windows Service which is using NHibernate (3) and SQL Server 2008. WPF-Clients are connecting over WCF to this Service for using DataAccess. My question is now: Can I use SysCache or SysCache2 in this Scenario - or are they only usable in Web-/ASP.NET-Applications?
Can I use NHibernate SysCache with Non-Web-Application?
487 Views Asked by BennoDual At
1
There are 1 best solutions below
Related Questions in NHIBERNATE
- Deleting Orphans with Fluent NHibernate
- NHibernate ICompositeUserType split string columns
- NHibernate Second Level Cache for Collections is Slow
- NHibernate - using CreateMultiQuery
- NHibernate.Mapping Exception. No persister for Namespace.className
- Trouble combining Linq Expressions into a Func
- Join Tables using Fluent Nhibernate
- NHibernate - NonUniqueObjectException
- Restrictions.Disjunction().Add(Subqueries.WhereValue(1)
- Nhibernate: Exception occurred getter of id
- Mapping to Date part of Sql DateTime
- Select from Table Valued Function nhibernate
- NHibernate Filtered Child Collection Lazy Loaded even with eager fetch specified
- Parallel Transactions in distinct Session in NHibernate / SQL Server
- updating M:N data using session nhibernate .Net MVC
Related Questions in CACHING
- ClassCastException: datastructures.instances.JClass cannot be cast to java.util.ArrayList
- Robospice. How to save data and how to get data from DB?
- Make @lru_cache ignore some of the function arguments
- Xib taking long time (>1s) to load. UIFont cache seems to blame
- Android picasso cache images
- Rails 4 low-level caching not working
- How to cache Exchange web service API autodiscoverurl?
- The process cannot access the file because it is being used by another process asp.net
- Alamofire loading from cache even when cache policy set to ReloadIgnoringLocalAndRemoteCacheData
- Java Heap vs Cache
- In what use cases is locking on ASP.NET cache required/desirable
- Chrome cache overriding angularjs disabling of cache
- AFNetworking 2.0 Cache Issue
- Symfony ESI Cache / Surrogate Listener Issue
- Using getOrElseUpdate of TrieMap in Scala
Related Questions in NHIBERNATE-3
- Disable cache for one model
- NHibernate 3.0: TransactionScope and Auto-Flushing
- Fluent NHibernate - IndexOutOfRange
- NHibernate QueryOver and Collection Filtering
- OutOfMemory Exception while fetching large sized data using QueryOver<> in Linq to Nhibernate
- Many-to-many association not stored in NHibernate
- Extra columns selected when using LInq with NHibernate?
- Can I use NHibernate SysCache with Non-Web-Application?
- NHibernate Removing ManyToMany record when deleting parent
- Connection pooling using custom connection provider
- Which linq functions are fully supported by NHibernate 3.0 IQueryable<T>
- Programmatically set Nhibernate to lower logging level for log4net
- Bound FetchMany in Linq to NHibernate
- Serialize nhibernate entity to json error: Cannot serialize a Session while connected
- nHibernate 3 QueryOver with compound from clause
Related Questions in SYSCACHE2
- SysCache2 and FluentNhibernate on MVC aplication
- NHibernate caching not working for anonymous type
- Fluent NHibernate Syscache2 cache expiration
- Can I use NHibernate SysCache with Non-Web-Application?
- NHIbernate SysCache2 and SQLDependency problems
- How to clear the entire second level cache in NHibernate
- Side effects of SessionFactory.Evict?
- Cached Fetch for User Roles from NHibernate in an MVC App
- NHibernate + SysCache2 + SqlCacheDependency - Cache not invalidating in application
- How do I make NHibernate cache fetched child collections?
- How to configure cache regions in fluent nhibernate and syscache2
- How to configure syscache's Region and Expiration using code (not in App.Config xml)
- NHibernate Lookup Table Caching + SqlCacheDependency
- NHibernate SysCache2 - dependency breaks cache
- Are there any issues using Syscache in a multiserver environment as a nhibernate 2nd level cache?
Related Questions in SYSCACHE
- Unable to cast object of type 'NHibernate.Caches.SysCache.SysCacheProvider' to type 'NHibernate.Cache.ICacheProvider'
- SysCache2 and FluentNhibernate on MVC aplication
- Can I use NHibernate SysCache with Non-Web-Application?
- Expiration of NHibernate syscache
- Orchard takes too long to load - How to set SysCache DefaultExpiration?
- NHibernate 3.3 and SysCache
- How do I configure cache regions for syscache in nhibernate?
- NHibernate second-level cache with external updates
- How to configure syscache's Region and Expiration using code (not in App.Config xml)
- ArgumentNullException when caching a sqlquery on NHibernate
- NHibernate SysCache does not cache children objects
- Evict 2nd level cache items Syscache/Nhibernate
- Why will NHibernate not use 2nd level cache on second request?
- Nhibernate + nuget + syscache
- nhibernate L2 caching: configure by code
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, it works just fine.
You can use it even in a console app if you want to (provided the computer has the full .NET Framework installed and not just the Client Profile).