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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T05:50:48+00:00 2026-06-15T05:50:48+00:00

I am saving entries in table only if they already exist: public static Email

  • 0

I am saving entries in table only if they already exist:

public static Email getOrCreate(Session sess, String address) {
    if (address==null) return null;
    List l = sess.createQuery("SELECT email FROM Email email WHERE email.address=:address").setString("address", address).list();
    if (l.size() > 0)
        return (Email) l.get(0);
    Email email = new Email(address);
    sess.save(email);
    return email;
}

I am not satisfied with the speed of this procedure. It takes me about 5 mins to save 5000 complicated records and 50% of time is occupied by this function. My hibernate cache setting is:
cfg.setProperty(“hibernate.cache.provider_class”, “org.hibernate.cache.EhCacheProvider”);

Of course I could create static map and sync it with database sometimes, but it looks a bit ugly. Can hibernate do something like this? Thanx.

  • 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-15T05:50:50+00:00Added an answer on June 15, 2026 at 5:50 am

    Do it in batch:

    Set<String> addresses = ...;
    List<String> existingAddresses = 
        session.createQuery("select email.address from Email email where email.address in :addresses")
               .setParameterList("addresses", addresses)
               .list();
    addresses.removeAll(existingAddresses);
    for (String address : addresses) {
        session.save(new Email(address));
    }
    

    Make sure, though, that your database allows 5000 elements in an IN clause. Oracle, for example, limits them to 1000. But you could still only execute 5 request instead of 5000.

    That said, 5 minutes to do that looks like a whole lot to me. Do you have a database index defined on email.address?

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

Sidebar

Related Questions

Hello I am saving email address from a textarea in a database. Now i
After saving a String value into memcached using the Danga client, I attempted to
I'm saving data to a table, but I also need a column with a
I have a table for saving the ranking of my app with the following
I am using Marino Iglesias' SluggableBehavior to generate slugs while saving entries. Now, since
I have Table in which We can have Same ticket no.for multiple entries.i want
I've got a CakePHP save method that is saving multiple entries per one save
I have a (cake) php function designed to update entries in a MySQL table;
I am currently allowing users to upload CSV files, processing them, saving database entries
I'm having some trouble saving multiple entries in CakePHP. I'm not sure whether saveAll()

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.