0
votes
3answers
92 views
How to reduce the total memory hogging by compacting my Objects in Java?
I have a table with around 20 columns with mostly consisting of varchars and decimals. This table has almost 1.5M rows. But few things are common in them like column1 consists of only 100 distinct …
2
votes
4answers
77 views
What pattern fits between a façade and a DAO?
I'm in the process of designing part of my companies architecture for its JEE web applications. I'm pretty clear on the reasons to use a façade and one or more DAOs. The problem I have is this:
There …
0
votes
2answers
68 views
instantiating classes by name with factory pattern?
let's say i have a list of classes :
A,B,C.... which all inherit from Base
i get the class name as string from the user , and i should instantiate the right class and return a pointer to Base.
how …
2
votes
4answers
75 views
Is there a better way to implment Equals for object with lots of fields?
I have lot of Data Transfer Objects (DTO) that each contains lots of simple fields. I need to implement Equals on all of them (so I can write some unit tests off transporting them var WCF).
The code …
1
vote
3answers
44 views
Where is the best place to verify form data ?
Question is simple . Where should I put form verification process in the mvc design pattern (Zend , Symphony, Cakephp, Codeigniter) . I ask this question because i have my own framework. But i can not …
3
votes
3answers
39 views
WCF/Client apps - where should business logic go?
Hi
We're building a WCF Web Service using WSSF. The idea is that it will expose our main database via the service and allow us to build various applications and web sites on top of the service. At …
0
votes
1answer
19 views
“Swapping” a UIView Instance variable - cannot dealloc “previous” view
I want to organize somehow my iPhone game's level-views, but I simply cannot (without expanding Object Allocations). I made a really "skeleton" of my code (this game has 2 levels, the goal is to …
2
votes
6answers
195 views
Replace Switch/Case with Pattern
I have code very similar to this example three times in a code behind.
Each time the switch is toggling off of an option that is sent to it. Each
time the code inside the case is exactly the same …
2
votes
2answers
32 views
What design should I use so a class can query one of it’s ancestors?
I'm creating an object hierarchy that is representing a table that is draw on a control. My hierarchy looks like this :
Table has multiple pages
Page has multiple lines
Line has multiple cells
Cell …
1
vote
2answers
55 views
design pattern asking for advice: push model v.s. pull model
Hello everyone,
My application has several workers (working on different things as different processes) and some resources (working unit). Different workers need to process on all working unites. For …
0
votes
0answers
30 views
Best way to design authentication in application?
I have design windows application that auto-generate menu items and authentication from database. First time authentication has only one property, so I decide to design to persist authentication in it …
0
votes
4answers
178 views
Singleton in go
How does one implement the Singleton design pattern in the go programming language?
3
votes
5answers
217 views
How does one implement UI independent applications?
What are the fundamental techniques to make most part of my C# source code UI independent?
For example, I would like to write my source code for Winforms desktop application which I shall be able to …
7
votes
17answers
510 views
When can a design pattern make your software worse?
When can a design pattern make your software worse?
I have seen a program where they used the facade pattern between the GUI and logic. They considered that no objects may be transported over this, …
1
vote
10answers
126 views
What design pattern would you consider is most important to use? [closed]
What design pattern is most used?
What design pattern should I learn first?
