Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please type your username.

Please type your E-Mail.

Please choose an appropriate title for the post.

Please choose the appropriate section so your post can be easily searched.

Please choose suitable Keywords Ex: post, video.

Browse

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Logo Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Logo

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Navigation

  • Home
  • About Us
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • About Us
  • Contact Us
Home/ Questions/Q 2361

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Latest Questions

Author
  • 61k
Author
Asked: November 26, 20242024-11-26T04:41:09+00:00 2024-11-26T04:41:09+00:00

Code Smell 231 – Redundant Data

  • 61k

Where are your sources of truth?

TL;DR: Say it only once

Problems

  • Don't Repeat Yourself principle violation

  • Consistency problems

  • Maintainability

  • Testing and Debugging

Solutions

  1. Keep the responsibilities to relevant objects and delegate to a single source of truth

Context

The principle of “Don't Repeat Yourself” (DRY) encourages you to avoid redundancy and duplication of behavior.

Redundant data can lead to inconsistencies because updates or changes need to be made in multiple places.

If you update one instance of the data and forget to update another, your system can become inconsistent, which can lead to errors and unexpected behavior.

Maintaining redundant data can be a nightmare when it comes to making changes or updates since It increases the workload and the likelihood of introducing errors during maintenance.

With a single source of truth, you only need to make changes in one place, simplifying the maintenance process.

When data is repeated in multiple places, it becomes difficult to identify the authoritative source of that data, leading to confusion for developers.

Sample Code

Wrong

class Transfer:     def __init__(self, amount, income, expense):         self.amount = amount         self.income = income         self.expense = expense  class Income:     def __init__(self, amount):         self.amount = amount         # amount is the same for party and counterparty  class Expense:     def __init__(self, amount):         self.amount = amount  transfer_amount = 1000   # simplification: should be a money object with the currency  income = Income(transfer_amount) expense = Expense(transfer_amount) transfer = Transfer(transfer_amount, income, expense)  print("Transfer amount:", transfer.amount) print("Income amount:", transfer.income.amount) print("Expense amount:", transfer.expense.amount)  
Enter fullscreen mode Exit fullscreen mode

Right

class Transfer:     def __init__(self, amount):         self.amount = amount         self.income = Income(self)         self.expense = Expense(self)  class Income:     def __init__(self, transfer):         self.transfer = transfer      def get_amount(self):         return self.transfer.amount  class Expense:     def __init__(self, transfer):         self.transfer = transfer      def get_amount(self):         return self.transfer.amount  transfer_amount = 1000   transfer = Transfer(transfer_amount)  print("Transfer amount:", transfer.amount) print("Income amount:", transfer.income.get_amount()) print("Expense amount:", transfer.expense.get_amount())  
Enter fullscreen mode Exit fullscreen mode

Detection

[X] Manual

This is a semantic smell

Exceptions

  • For performance issues, you can add caches and redundancy, but you need extra effort to keep the data synchronized

Tags

  • Data

Conclusion

In larger and more complex systems, redundancy becomes a significant problem.

As your system grows, the challenges associated with maintaining and synchronizing redundant data also increase.

Redundant data also increases the surface area for testing and debugging.

You need to ensure that all copies of the data behave consistently, which can be a challenging task.

Relations

mcsee

Code Smell 49 – Caches

Maxi Contieri ・ Dec 11 '20

#oop #webdev #codenewbie #caching

Disclaimer

Code Smells are my opinion.

Credits

Photo by Jørgen Håland on Unsplash


Everything will ultimately fail. Hardware is fallible, so we add redundancy. This allows us to survive individuals hardware failures, but increases the likelihood of having at least one failure at any given time.

Michael Nygard

mcsee

Software Engineering Great Quotes

Maxi Contieri ・ Dec 28 '20

#codenewbie #programming #quotes #software


This article is part of the CodeSmell Series.

mcsee

How to Find the Stinky parts of your Code

Maxi Contieri ・ May 21 '21

#codenewbie #tutorial #codequality #beginners

beginnersprogrammingtutorialwebdev
  • 0 0 Answers
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

Sidebar

Ask A Question

Stats

  • Questions 4k
  • Answers 0
  • Best Answers 0
  • Users 2k
  • Popular
  • Answers
  • Author

    ES6 - A beginners guide - Template Literals

    • 0 Answers
  • Author

    Understanding Higher Order Functions in JavaScript.

    • 0 Answers
  • Author

    Build a custom video chat app with Daily and Vue.js

    • 0 Answers

Top Members

Samantha Carter

Samantha Carter

  • 0 Questions
  • 20 Points
Begginer
Ella Lewis

Ella Lewis

  • 0 Questions
  • 20 Points
Begginer
Isaac Anderson

Isaac Anderson

  • 0 Questions
  • 20 Points
Begginer

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help

Footer

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise

Querify Question Shop: Explore, ask, and connect. Join our vibrant Q&A community today!

About Us

  • About Us
  • Contact Us
  • All Users

Legal Stuff

  • Terms of Use
  • Privacy Policy
  • Cookie Policy

Help

  • Knowledge Base
  • Support

Follow

© 2022 Querify Question. All Rights Reserved

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.