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

  • SEARCH
  • Home
  • 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 8279469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T09:21:23+00:00 2026-06-08T09:21:23+00:00

I have the following class: public class MatchMaker : Hub { private readonly ISoloUserRepository

  • 0

I have the following class:

public class MatchMaker : Hub
    {

        private readonly ISoloUserRepository soloUsers;
        public MatchMaker(ISoloUserRepository userRepo)
        {
            this.soloUsers = userRepo;
        }
         //Client Requests
        public void findNewPartner(string Name, string Country)
        {

            SoloUser soloUser = soloUsers.Users.FirstOrDefault(s => (s.Name == Name) && (s.Country == Major));
            if (soloUsers.Users.Count > 0){
                Clients.partnerRequestResult(soloUsers.Users.FirstOrDefault());
                soloUsers.Users.Remove(soloUser);
            }
            else
            {
                soloUser = new SoloUser { 
                    Name = Name,
                    Country = Country                       
                };
                soloUsers.Users.Add(soloUser);
            }



        }
    }

I want to be able to keep my soloUsers object in memory, so whenever this class is accessed it keeps track of the SoloUser objects that are added to the soloUsers repository. I havent quite built out my SoloUserRepository class, so I wanted to know the best way to handle this. Would I have to use a database in this sense to maintain the SoloUser being added to the collection, or is there a way to store this collection in memory? Keep in mind that users are constantly being added and removed.

  • 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-06-08T09:21:25+00:00Added an answer on June 8, 2026 at 9:21 am

    I’d say that it doesn’t matter if the collection is large or small. It depends on other factors, such as:

    1. Do you require the collection to persist if your process shuts down? If not – memory will be OK; if it is OK that you loose only some data – synchronize memory with persistent storage from time to time; otherwise – use (not necessarily database) storage.

    2. How many threads will be accessing your collection? This is some backend to web/cs application, right? If that is so – then you will need a few locks and events to synchronize access. Relational database can usually handle these for you.

    3. If you are sure, that collection will remain small – memory will be OK. What happens if it grows? Would it be easier to move part of process to other server or move persistent storage to other server? Will your routines remain fast enough?

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

Sidebar

Related Questions

I have following class public class ButtonChange { private int _buttonState; public void SetButtonState(int
I have the following class public class MyClass { private int myAttr; public void
I currently have the following code for my hub class: public class MatchMaker :
Consider you have the following class public class OuterClass { ... private static class
I have the following class: public class Vertex() { private double xCoord; private double
I have this following class: public class TV { public string GroupId { get;
I have a following class public class MyHttpClient { private static HttpClient httpClient =
I have following class: public class PairOfDice { private Dice d1,d2; public int Value
Suppose I have the following class: public class Foo { private List<Integer> list =
I have the following class public class Presenter: IDisposable { public IView View {get;private

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.