对数据库物化和哈希表的疑问

发布于 2024-11-17 19:12:04 字数 228 浏览 3 评论 0原文

我对物化技术和哈希表的概念有点困惑。 我正在开发一个项目,我被告知要实现一个哈希表,其中数据被“物化”(从具有不同结构的原始数据推断出来)并存储在中央内存中以供以后评估。必须这样做,因为评估函数执行得非常频繁,将部分信息保存在这个哈希表中肯定会提高整体性能。

现在,这个评估功能将用Java实现。我的问题是:我是否也可以在 Java 中创建这个哈希表,并将值列视为对象数组,而不是简单的 key:value 结构的经典概念?

I'm a little confused about the concepts of materialization techniques and hashtables.
I'm working on a project and I was told to implement a hashtable in which data is "materialized" (inferred from the origin data with a different structure) and stored in central memory for a later evaluation. This has to be done because the evaluation function is performed very often, and saving part of the information in this hashtable will definitely increase the overall performance.

Now, this evaluation function will be implemented in Java. My question is: can I create this hashtable in Java too and consider the value column as an array of objects, instead of the classic concept of simple key:value structure?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

丢了幸福的猪 2024-11-24 19:12:04

由于java中的数组本身就是对象,因此您确实可以拥有一个对象数组。哈希表的通用绑定如下所示:

Hashtable<Object, Object[]> table=new Hashtable<Object, Object[]>();

Since Arrays in java are objects in and of themselves, you can indeed have an array of objects. The generic binding for the Hashtable would look like this:

Hashtable<Object, Object[]> table=new Hashtable<Object, Object[]>();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文