I have to cache a set of lookup collection based on several objects. In other to use app fabric, the underlying object has to be serializable. My issue is that I have over 100 object that could potentially be cached and going and marking each of them with the [serializable] attribute just seems wrong to me. Since all of this object derive from a base class, I would think marking the base class as serializable would make the derived class serializable but attributes do not work with inheritance. Does enyone know how to go about making all these classes serializable without marking each of them with the property ? Can I make all classes in a namespace serializble for instance, in which case I can put all of them in a library.
Serializing look up object for App Fabric
136 Views Asked by user1884081 At
1
There are 1 best solutions below
Related Questions in APPFABRIC
- AppFabric hosting/management replacement
- AppFabric "WF Instance History" empty for a workflow hosted in IIS
- Serializing look up object for App Fabric
- what's the correct way to use locking in AppFabric
- Caching Pattern for read-through/write-behind cache with fallback to underlying data store
- ASP.NET application (always running) shuts down application pool when publishing
- Paging, listing and grouping queries with AppFabric Cache
- Cache data on Multiple Hosts in AppFabric
- AppFabric SessionState with SQL Server as a backup
- Configuring Windows Identity Foundation from code
- Hosting azure appfabric service bus samples on a development machine
- Why did Microsoft get rid of Velocity Distributed Cache as standalone product?
- AppFabric Caching transport security
- Implementing Reliable Inter-Role Communication using the AppFabric ServiceBus on Azure, IObserver pattern
- Configuring ACM.exe and ACMBROWSER.exe tools
Related Questions in SERIALIZABLE
- Serializable class with ISerializable constructor
- Error in passing data between activites android while using a custom object
- Redis Serialization and Deserialization
- Implementing both Serializable and Parcelable interfaces from an object in Android - conflict
- Serializing look up object for App Fabric
- What are the conditions for Serializable?
- java.util.Set, java.util.List Serializable issue
- Could anyone tell me whats use of implements interface which extended with "Serializable" interface with example?
- how to pass a list of objects of View in a bundle
- Sending Parcelable Objects as Serializable
- Setting non-serializable attribute value into HttpSession
- WRITE over READ in mysql
- Implement Serializable to a class implementing an Interface
- Including outside variables when serializing an object
- HtmlUnit: HtmlPage Serialization Exception
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?
Unless you're using the Azure version of AppFabric then you will just have to make the classes serializable, as
IDataCacheObjectSerializernever made it into the Windows Server version of AppFabric.