I am working on IBM Worklight. I have developed an application using JSON Store.I have some questions related to JSON Store.
1.Does JSON Store possess size limit?
2.JSON Store stores data in file right? If I want to see the data that is in JSON Store, how can I see that on my device?
3.Does the memory of the device has any impact on the JSON Store storage?
4.While creating a project ...I found option like create --> new Worklight JSON Store. What is the actual use of it? I am not able to create a new JSON Store with that option.
1.Does JSON Store possess size limit?
Available space on the device. More details in the documentation.
2.JSON Store stores data in file right? If I want to see the data that is in JSON Store, how can I see that on my device?
Yes. More details in the documentation. For example, on Android the database file is stored here: /data/data/com.[app-name]/databases/wljsonstore/jsonstore.sqlite
3.Does the memory of the device has any impact on the JSON Store storage?
JSONStore uses some amount of memory to work, like any software application. There's an section on performance in the documentation.
4.While creating a project ...I found option like create --> new Worklight JSON Store. What is the actual use of it? I am not able to create a new JSON Store with that option.
There's a blog post here that uses the wizard. Keep in mind the blog post is very dated, it's meant for Worklight 5.0.5. Some methods used in the blog post have been deprecated and improved since, but still made backwards compatible. What I actually recommend is basing your JSONStore code on the new 6.0 sample code here. There's a section in the documentation here that explains adapter integration and the wizard.