虚拟化大数据的最有效方法是什么?

发布于 2025-02-11 05:59:48 字数 1104 浏览 1 评论 0原文

我有一个包含图表和图像的卡列表。由于图表数据和图像请求放缓我的应用程序,因此我认为遵循虚拟化技术。我目前正在使用NGX-Perfect-Scrollbar,并且将使用它的虚拟滚动功能。 但是我需要知道,我可以在不落后应用程序的情况下可视化数据的速度更快吗?

下面是我使用的代码段,我正在使用创建卡和接口的示例图像。

<perfect-scrollbar class="{{isMobileDevice ? 'mobile-perfect-scrollbar' : ''}}">
                <div class="wl_tile_container_holder">
                    <div *ngFor="let item of rowData" class="wl_tile_container" (click)="onClickTileView(item)">
                        <app-watchlist-tile [data]="item"
                        [isFullMarket]="isFullMarket"
                        [isDefinedWatchlist]="isDefinedWatchlist"
                        [selectedWatchList]="selectedWatchList"
                        [fullView]="fullView"
                        (menuItemClicked)="onSelectMenuItem($event)">
                        </app-watchlist-tile>
                    </div>
               </div>

I have a list of cards that contains charts, images on it. Since the chart data and image requests slowdown my application, I thought to follow a virtualization technique. I'm currently using ngx-perfect-scrollbar and I'm about to use the virtual scrolling feature of it.
But I need to know is there a better and faster way that I can visualize the data without lagging the application?'

Below is the code snippet I'm using the create the cards and a sample image of the interface.

<perfect-scrollbar class="{{isMobileDevice ? 'mobile-perfect-scrollbar' : ''}}">
                <div class="wl_tile_container_holder">
                    <div *ngFor="let item of rowData" class="wl_tile_container" (click)="onClickTileView(item)">
                        <app-watchlist-tile [data]="item"
                        [isFullMarket]="isFullMarket"
                        [isDefinedWatchlist]="isDefinedWatchlist"
                        [selectedWatchList]="selectedWatchList"
                        [fullView]="fullView"
                        (menuItemClicked)="onSelectMenuItem($event)">
                        </app-watchlist-tile>
                    </div>
               </div>

enter image description here

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

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

发布评论

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

评论(1

清风挽心 2025-02-18 05:59:48

完全虚拟化为VM提供了最佳的隔离和安全性,并简化了迁移和可移植性,因为相同的访客OS实例可以在虚拟化或本机硬件上运行

Full virtualization offers the best isolation and security for VMs and simplifies migration and portability as the same guest OS instance can run on virtualized or native hardware

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