Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Someone recently asked a question about the Ghost Design Pattern - I have not seen this before.

What is the Ghost Design Pattern and how is it implemented? I can only find snippets on the web in reference to it.

share|improve this question
3  
The bad jokes I could make... – Paul Nathan Jun 9 '10 at 18:04
1  
During architecture interviews I used to ask people, "so, can you tell me anything about the LeftHandedSpinWidget design pattern?" and watch them wrestle with the confusion. There is no LeftHandedSpinWidget design pattern. – Swingline Rage Jun 9 '10 at 18:05
2  
@Tim Sullivan 'ghost' is not a valid tag; before rolling back, please make sure you're not doing more harm than good. – George Stocker Jun 9 '10 at 18:18
3  
@Tim Sullivan: I know you aren't new here, so you know that editing questions is part of what makes Stack Overflow better than other sites. – George Stocker Jun 9 '10 at 18:25
4  
@tim The community disagrees with you: meta.stackoverflow.com/questions/2950/… – George Stocker Jun 9 '10 at 18:29
show 7 more comments

3 Answers

up vote 20 down vote accepted

The only reference I've ever heard to a Design Pattern and 'Ghost' is in Lazy-Loading.

Since Lazy-loading involves only loading the object when it's actually needed, you can think of it as a 'Ghost' until then. You can see its outline, but can't really use it until it's loaded.

share|improve this answer
Yeah I was reading that but it did not make a whole lot of sense to me – David Relihan Jun 9 '10 at 18:01
@David: Yeah, since when do ghosts materialize when someone touches them? – intuited Jun 9 '10 at 19:37

It's not in GOF nor Fowler PoEAA, the only thing I can think of it as something similar its a Proxy for lazy loading.

share|improve this answer
That would make sense alright – David Relihan Jun 9 '10 at 18:08

Ghosts are mentioned in PoEAA, pp 202, 206-14. A ghost is a lazy loaded object that contains just enough info to instantiate itself on demand. They can be useful because they can trigger a bulk load of similar ghosts on the first access if they register themselves with a loader (dunno if Fowler mentions that bit though).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.