I built a monitoring web application that reads from server log files. After that, business logic pull other information by using a geolocalization service. Do I should consider both log file and geolocalization database as my data layer?
Three-Tier architecture: what should be in data layer?
245 Views Asked by Lorenzo At
1
There are 1 best solutions below
Related Questions in WEB-APPLICATIONS
- Error fetching the entry page through Django url path
- How To Convert Nextjs Typescript Golang Postgresql Web App Into Desktop App
- Error connecting to SQL Server in AspNetCore applications
- apache2 rotatelogs creates log file but its empty when deployed to azure web app
- how to do the sort function with specific value when the page load i dont know much about coding
- Getting error System.Management.Automation.PSSecurityException HResult=0x80131501 in web application
- Creating a Desktop Version of a Web Application (NextJS TypeScript Golang Echo)
- create django models using HTML form
- Any HTML standards to limit resource of the HTML content?
- .NET 7 Web Application sending an HTTP Error 403.14 - Forbidden The Web server is configured to not list the contents of this directory
- How to get a postMessage message from Duda into the embedded iframe?
- error 'formDataList' isn't defined. in flutter app
- OPEN ID connect request to refresh access token
- C# EF get DbContext outside of WebApplication
- Predicting V8's Math.random() truncated outputs
Related Questions in SOFTWARE-DESIGN
- Adding users file storage feature to my application
- How to use GoF design pattern for software robustness?
- Handling media in chat apps
- In DDD where to handle interaction with external services that is part of business logic? In Domain Model or in Command Handler?
- which programming language is suitable for this task?
- Is it good practice to derive a builder from the class it builds?
- Liskov Substitution Principle: Confusion about additional Functionalities of sub types
- Handle changes in calculation logic for order system
- Having all features in single application
- The best representation for duration between dates in rest api
- Broadcast events to all Application Instances
- Security and users in a microservice architecture
- Is "abc" + 5 considered an expression in python?
- Architecture, EF Core 8 and large SQL queries best practice question
- How to create database software with custom extension to save and reload later with C# WinForm App
Related Questions in THREE-TIER
- React drei fix light direction with orbit control
- Creating trapezoid with intended requirement
- Delphi FireDAC FDTableAdapter losing or changing property DatSTableName unexpectedly
- What are the architecture tiers of a Spring Boot + React + MySQL application?
- Is it bad to specify "id" and "created_at" values within the FrontEnd app?
- Entity Framework tracks change after second update
- Inconsistent Accessibility Problem in .NET
- Three tier java application in spring boot application with REST APIs
- WordPress hosting on AWS using three tier architecture
- Need for a domain model in a service in 3 tier architecture?
- Dynamic Side menu using three tier
- What does "Cannot set property 'getStrokeStyle' of undefined" mean for a Three.js program?
- How come my gridview doesn't return what i updated?
- How to Create Search using Three Tier Architechture
- Classes location
Related Questions in MULTI-TIER
- How would I update the Textboxes in this multi-tiered program in order to properly display the values which are gotten by each method? C# ASP.NET
- Proper separation in layer architecture seems more of a theoretical goal than reality. Any strategies around that?
- Difficulties connecting to database through Scaffold-DbContext
- Multitier architecture and Identity. Why to use UserManager and RoleManager?
- I want to deploy a multi-tier web app into AWS but don't understand how to set it up
- Multi-tier architecture: Angular, Node.js and MySQL
- How to use enums in Interfaces?
- Architecture design for a multi-tier web-application using delphi and firebird
- How to make ActiveRecord query faster on production environment running multiple servers?
- Datasnap server authentication problem with remote database of users credentials
- Multi tier architecture Appliation scalibility issue
- Decouple a layer from multi layer architecture as a Micro Service
- what is the significance of having application server?
- Is it wrong to use javafx classes in your logic layer?
- FastReports: Add Querys Data Tab without Database connection from Client Side
Related Questions in DATA-LAYER
- How to implement data layer in React Application for Adobe analytics (adobe launch) ?
- google analytics content groupings error
- Tealium Javascript Code Extension How To Return A Variable
- What should be implemented in data layer and what in business layer?
- How to push a dynamic price to the datalayer?
- Sending pageType and pageName to DataLayer
- Android app clean architecture: Should data layer have its own model classes?
- Three-Tier architecture: what should be in data layer?
- Copying References Asp.net MVC Project Error
- Jersey Service and Persistence Layers
- Query on Datalayer and how to run in CustomHTML
- Access datalayer from GTM
- How can I use my Adobe DTM data layer to track enhanced ecommerce using GTM?
- Repository pattern with changing data on server over time
- PHP Variables in dataLayer
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes both of these belong in the Data Layer.
See the Wikipedia page on Data access layer.
Although the persistent storage is usually a relational database it doesn't have to be.