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 6889645
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:10:56+00:00 2026-05-27T06:10:56+00:00

When I make a new object, let’s say o = Object.new This object has

  • 0

When I make a new object, let’s say

o = Object.new

This object has an id,

o.object_id 
#=> ########

I also make several other objects, using the Object class. What would be the best way to have ruby find the object ‘o’ by using the object_id attribute? I am thinking in terms of something like

search_id = o.object_id
search_result = Object.find(search_id)

Where ‘search_results’ would be the object corresponding to ‘search_id’. Also, I would definitely appreciate an altogether different approach to indexing objects and retrieving them by a guid or something. Thanks so much!

Hah, well I guess I really just need to think about this in the context of a database and just use MySQL queries or those of whatever DB I choose to find the object. The more I think about it, the only possible things that would be accessible through this imaginary ‘find()’ method would be things that are newly created or ‘active’? Sorry for making this a crappy question.

  • 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-27T06:10:56+00:00Added an answer on May 27, 2026 at 6:10 am

    Yes, you can:

    irb(main):002:0> s1 = "foo"
    #=> "foo"
    irb(main):003:0> s2 = ObjectSpace._id2ref(s1.object_id)
    #=> "foo"
    irb(main):004:0> s2.object_id == s1.object_id
    #=> true
    irb(main):005:0> s2[0] = "z"
    #=> "z"
    irb(main):006:0> s1
    #=> "zoo"
    

    Should you do this? I’ll leave that up to you. There are less geeky ways to store an object with a serializable id (e.g. in an Array and returning the index). One problem you may run into is that if the only ‘reference’ you keep to an object is the object_id, the object can be collected by GC when you’re not looking.

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

Sidebar

Related Questions

I'm creating a new object that takes a string and a class. Let's say
I'm trying to make a list containing different objects. List<Object> list = new ArrayList<Object>();
Let's say I have a JavaScript object: function a(){ var A = []; this.length
I have array of Objects (let say that class name is Snap) Snap. Is
Whenever I make a new file in xcode, it puts something like this at
I'm trying to make a new CLLocation subclass. This is the skeleton: #import <UIKit/UIKit.h>
Let's say I have a class Employee and a class Company which holds a
This is something I can't understand. Let's say that I overload operator & to
How do I make code like this thread safe? public static class Converter {
Let's say I have this custom component. It subclasses JMenuItem and all instances use

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.