Application Logic Vs DB Triggers for database cleaning
When cleaning out old data from a set of database tables, is it safer to have the logic in the application or in a database trigger?
Django application strategy
I have been working a while on a Django project which has been growing a bit lately. I have been think a bit about what strategy to use to make it easier to handle. One thing I would like to get some input on would be if I should split my application into several smaller applications. That would make my view and model files smaller and separate some of the concerns.
How do I break down and plan a personal programming project? [closed]
It’s difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 12 years ago. I’ve just started a programming job where I’m […]
Is having functionality in DB a road block to scalability?
I may not be able to give the right title to the question. But here it is,
Are there any specific workflows or design patterns that are commonly used to create large functional programming applications? [closed]
Closed 9 years ago.
What to choose API based server or Socket based server for data driven application
I am working on a project which has a Desktop Application for MAC/COCOA, a native application for iPhone another native application in iPad. All the application do almost same thing. The applications are data driven applications. Every communication to server is made via a restful API developed in PHP.
When a user logs in a lot of data is fetched from server. And to remain in sync with server polling is done.
As there are lot of data to poll it makes application slower and un-reliable.
Application workflow
I am in the planning process for a new application, the application will be written in PHP (using the Symfony 2 framework) but I’m not sure how relevant that is. The application will be browser based, although there will eventually be API access for other systems to interact with the data stored within the application, again probably not relavent at this point.
Necessary Infrastructure for large project with many components communicating through IPCs
I have a fairly in depth question which probably doesn’t have an exact answer.
Application Logic – which of the two definitions is correct?
This is my understanding of the Application Layer:
What is the preferred way of communicating between applications on the same system?
I’m designing a system that is built on several small applications written in python, some of these will be services and others will be programs that only run during special situations. What I need to achieve is to let the server communicate to a service when a certain event occurs with some small amount of data. So that the service knows about the new situation and can take the appropriate action, sometimes immediately and sometimes in the future.