Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
141 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 ...
7
votes
3answers
146 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 ...
7
votes
7answers
1k 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, ...
7
votes
3answers
729 views

Builder vs 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?
6
votes
3answers
228 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 { ...
5
votes
4answers
519 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 ...
4
votes
6answers
190 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 ...
4
votes
4answers
773 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 ...
3
votes
4answers
104 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 ...
3
votes
2answers
127 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?
3
votes
1answer
104 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: ...
3
votes
1answer
142 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
1answer
413 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 ...
2
votes
3answers
435 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 ...
1
vote
1answer
64 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); ...
1
vote
2answers
205 views

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

String internment in c# is a good example. Others?
0
votes
2answers
51 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 ...
0
votes
3answers
59 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 ...
0
votes
1answer
99 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 ...
0
votes
1answer
141 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 ...