Flex大数据量性能(ADEP / LCDS数据服务)

时间:2012-06-25 21:02:03

标签: performance flex arraycollection lcds

由于我们已经找到了Hibernate的解决方案,服务器端可以非常快速地加载数据:对于数千条记录甚至更多,不到一秒钟。现在的问题是将数据从服务器传输到浏览器。两个问题:

1.数据网格始终等待,直到ArrayCollection完全加载。我们通过指定:

克服了这个问题
<destination id="someAssemble">
    <properties>
        <use-transactions>true</use-transactions>
        <source>com.assembler.SomeAssembler</source>
        <scope>application</scope>
        <item-class>vo.SomeVo</item-class>
        <network>
            <paging enabled="true" pageSize="50" />
        </network>

==&GT;数据网格开始快速显示。问题是服务器停止从第51行加载数据。有没有办法强制Flex继续在后台加载数据(通过配置或代码)

2.如果我尝试加载一个大的ArrayCollection(例如超过20K的记录),它会锁定整个浏览器。是否可以在场景后平滑加载?

请帮忙!谢谢

0 个答案:

没有答案