The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
22 views

Do WCF DataContracts respect the Flyweight pattern?

If I use the flyweight pattern to create the intrinsic data (including a large image) in a series of objects that also contains extrinsic data, and then transmit them using WCF as DataContracts, does ...
1
vote
0answers
20 views

Does Serialization allow the Flyweight design pattern?

I'm using a complicated object design where I use the Flyweight pattern to limit certain non-static variables between multiple instances of a class. If both objects (the flyweight info and the class ...
1
vote
1answer
61 views

Flyweight pattern vs static fields

In my understanding the purpose of the flyweight pattern is to decrease memory footprint and increase performance by sharing common, extrinsic state. Why would anyone prefer to implement the pattern ...
2
votes
2answers
157 views

What is the difference between intrinsic and extrinsic state as described in Flyweight Pattern?

From the chapter on FlyWeight Pattern inside Gang of Four the FlyWeight pattern is applicable when most object state can be made extrinsic. What does extrinsic state mean ? I get the feeling that ...
2
votes
3answers
134 views

how flyweight design pattern minimizes memory

How does the Flyweight design pattern minimizes memory used? For me it looks like instead of creating objects it is only externalizing the data held by object which means memory used is the same. ...
4
votes
3answers
261 views

Python copy-on-write behavior

I'm working on a problem where I'm instantiating many instances of an object. Most of the time the instantiated objects are identical. To reduce memory overhead, I'd like to have all the identical ...
1
vote
2answers
142 views

Handling forms with many fields

I have a very large webform that is the center of my Yii web application. The form actually consists of multiple html form elements, many of which are loaded via AJAX as needed. Because of the ...
3
votes
3answers
311 views

Is Java's String Intern a flyweight?

Does the implementation of Java's String memory pool follows flyweight pattern? Why I have this doubt is, I see that there is no extrinsic state involved in Intern. In GoF I read that there should be ...
1
vote
1answer
186 views

Does boost::flyweight do reference counting?

I've been reading the documentation of boost::flyweight but i don't see any mention to deallocation or reference counting policies. Basically a flyweight object should behave like a repository of ...
0
votes
1answer
93 views

How can I prevent copying of flyweight objects?

I'm learning using key_value flyweights and I wrote the following code: #include <iostream> #include <string> #include <boost/flyweight.hpp> #include ...
3
votes
3answers
518 views

Flyweight vs object pool patterns: When is each useful?

As far as I know the object pool is a creational pattern and the flyweight is a structural pattern, but actually I can“t see very much difference between that two patterns, could someone please ...
7
votes
3answers
224 views

Flyweights with Boost and external data sources

Maybe there is a simple way around this that I'm not seeing, so hopefully somebody can explain it to me. Let's say I have a class: class A { public: const double parameter; const std::string ...
0
votes
2answers
274 views

How flyweight design pattern maintains different objects?

(i found this example while reading the flyweight ) let's assume there is an object called soldier in a game and this object differs by it's location only now my question is if i'm to use the ...
3
votes
2answers
513 views

How to make boost unordered_map to support flyweight<string>

I am trying to do the following: boost::unordered_map<boost::flyweight<std::string>, boost::flyweight<std::string> > map; boost::flyweight<std::string> foo(name); ...
0
votes
3answers
147 views

Assigning static instances to non-static ones in Flyweight pattern

I was going through the Flyweight sample code at http://www.oodesign.com/flyweight-pattern-wargame-example-java-sourcecode.html and wondering how it really works when we assign a static instance ...
3
votes
4answers
846 views

Flyweight Examples in Java

I am trying to create a flyweight object in Java. I've worked with a similar concept in Objective-C (Singleton Classes in Objective-C // I believe they are the same thing). I am trying to find a ...
4
votes
6answers
412 views

Is there any Java flyweight pattern implementation out there? [closed]

I've been looking for a flyweight pattern implementation and gave up after reaching page 20 of Google search. While there are countless stupid examples out there, it seems no one has ever published ...
1
vote
2answers
893 views

What is a good example of the Flyweight Pattern? [closed]

String internment in c# is a good example. Others?
0
votes
1answer
165 views

Flyweight pattern - how to store flyweights in the data structure?

Classic Flyweight pattern implementation example from GoF book only stores character code in sharable "Characters" and uses "GlyphContext" to store extrinsic state in a tree structure. This example ...
3
votes
2answers
262 views

Flyweight : Strings already use String pool : Does it makes sense to pool String objects for Flyweight?

Strings are already using Flyweight Design Pattern. Will it be beneficial/performant to pool common String objects. As the Strings will be already pulled from the String pool?
1
vote
1answer
223 views

Using boost::flyweight<T> inside struct T {} (ie, recursive flyweights)

I'm trying to define an immutable file-path value type, taking advantage of boost::flyweight to share path components. Something like this: struct filepath_data; typedef ...
8
votes
3answers
275 views

What is the reason for the name of the Flyweight Design Pattern?

I'm a non native English speaker, and trying to grasp a better understanding of that design pattern, I'm interested in the origin of that word for naming a pattern. What are the motivations for that ...
3
votes
1answer
132 views

How does dom4j library implements Flyweight pattern?

I can see in dom4j library a number of classes with Flyweight prefix: FlyweightAttribute, FlyweightComment, FlyweightText etc. Here is what java doc is saying in the case of FlyweightText: ...
2
votes
1answer
762 views

Flyweight pattern and C++ templates

I have flyweight pattern. I have abstract class Glyph. I have class Letter and abstract Code derived from Glyph. I have YusciiCode, UniCyrCode and UniLatCode derived from Code. My flyweight factory ...
5
votes
4answers
2k views

The best alternative for String flyweight implementation in Java

My application is multithreaded with intensive String processing. We are experiencing excessive memory consumption and profiling has demonstrated that this is due to String data. I think that memory ...
8
votes
7answers
3k views

How does java implement flyweight pattern for string under the hood?

If you have two instances of a String, and they are equal, in Java they will share the same memory. How is this implemented under the hood? EDIT: My application uses a large number of String objects, ...
9
votes
3answers
384 views

Flyweight and Factory problem with IDisposable

I seem to be mentally stuck in a Flyweight pattern dilemma. First, let's say I have a disposable type DisposableFiddle and a factory FiddleFactory: public interface DisposableFiddle : IDisposable { ...
3
votes
1answer
395 views

How to implement flyweight pattern in php?

This is its definition: Use sharing to support large numbers of fine-grained objects efficiently. But I can't figure out what it means exactly. Can you elaborate with a tiny demo?
2
votes
3answers
695 views

Using Flyweight Pattern in database-driven application

Can anyone please give me any example of situation in a database-driven application where I should use Flyweight pattern? How can I know that, I should use flyweight pattern at a point in my ...
5
votes
4answers
764 views

Hibernate and Flyweight

Is there a way to use Flyweight objects with the hibernating persistence mapping? My data model contains many objects that will be the same. Instead of having a separate instance for each of those ...
7
votes
3answers
1k views

What is the difference between Builder Pattern and Flyweight Pattern?

What is the difference between Builder Pattern and Flyweight Pattern in terms of usage, as both of them deals with large number of objects?