[Mod] NotEnoughItems Unofficial

I have already forgotten how original NEI works, but at least I can say that my codes are faster than original one.
I saw task manager to see disk usage, but in my environment it doesn’t matter.

If you want to use not-persistent one then you can use original one or GTNH version, don’t you?
I wrote “I don’t update and support this mod. I don’t accept any suggestion or dissatisfaction things.” on this topic.
Additionary I wrote in previous reply, I really recommend to use GTNH version.
If you dislike my work then you can make new one because you have a great programming skill to make and I don’t have correct programming skill.

Edit: I should write the background to use SQLite.
Of cource this code doesn’t work in Java, just make examples.

  1. I made multi-threading system to search NEI item name. It likes
    parallelstream{
    if( item.getDisplayName() .contains(text) ){
    itemlist.add(item)
    }
    }

  2. I want to make new functions to search tooltip. Then I wrote like
    parallelstream{
    if( item.getTooltip() .contains(text) ){
    itemlist.add(item)
    }
    }
    However it loads terrible time(for 30 seconds - few minutes?)

  3. I want to learn SQL and I heard SQL is fast to process so I tried to use SQL in Java but failed because of security issue.

  4. I use JNA/C++/SQLite in my latest build.

3 Likes