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

You must login to ask a question.

Forgot Password?

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

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

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

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7673771
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T16:35:21+00:00 2026-05-31T16:35:21+00:00

In creating my cache simulator, I realized that I need a structure that holds

  • 0

In creating my cache simulator, I realized that I need a structure that holds the block of data that is normally copied from main memory to the cache. In this case, it’s holding 8 numbers. I’ve setup my cache as an object so that I can set it’s Tag, Valid Bit, Dirty Bit, and finally the data block. So I’m thinking an array would be the best thing to do here. Would my getters and setters just be :

public int[] getDataBlock() {
    return dataBlock;
}
public void setDataBlock(int[] dataBlock) {
    this.dataBlock = dataBlock;
}

If they are, how do I initialize the cache to all 0?

//initialize cache slots to 0
for (int i = 0; i<cache.length; i++) {
    cache[i] = new SlotNode();
    cache[i].setValidBit(0);
    cache[i].setTag(0);
    for (int j = 0; j < cache.length; j++) {
        cache[i].setDataBlock([0]);
    }
    //cache[i].setData(0);
    cache[i].setDirty(0);
}
  • 1 1 Answer
  • 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

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T16:35:22+00:00Added an answer on May 31, 2026 at 4:35 pm

    You can write a helper function to clear a cache slot like this:

    public void clearData(){
       Arrays.fill(this.dataBlock,0);
    }
    

    To copy from main mem to a particular slot, use System.arraycopy:

    public void copyToCacheSlot(int[] mainMem, int baseIndex, int length){
        if (length <= 8)
            System.arraycopy(mainMem, baseIndex, this.dataBlock, 0, length);
        else
            //Copied too much 
    }
    

    Loop through your cache array and call the above functions accordinly for each element.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating a web service that often scrapes data from remote web pages. After
I'm creating a page that has some dynamically generated images built from data that
I need some advice on creating a thumbnail cache for amazon s3. I need
I'm doing an Image Cache following this method: http://www.brandondement.com/blog/2009/08/18/creating-an-image-cache-with-actionscript-3/ I copied the two as
Is there a way to cache map data for offline use? we're creating a
I'm creating a small cache daemon, and I want to limit its memory usage
I am creating an Android app that will download and cache PDF files (the
I'm trying to cache some application data that only needs to be instantiated when
I am creating a program that will download a .jar (java) file from a
I am interested in creating a routine that would query the currently running cache

Explore

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

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

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.