0

I am new to jackrabbit Oak, I have been looking into documentations but not finding the right approach, I read Oak comes with two node storage flavors: segment and document. I understood that the segment flavor is for standalone application so I wanted to implement the document flavor implementation not MongoDB or RDS, I wanna save my files in File System using MemoryDocumentStore, I am assuming Using MemoryDocumentStore I will be able to save files in file system and retrieve, I am not sure if I am right ?

What is the difference between segment and document implementation and how do I see the tree in Oak??

Abdul Hoque Nuri
  • 1,105
  • 1
  • 9
  • 18
Gopi Lal
  • 417
  • 5
  • 23

1 Answers1

1

No, MemoryDocumentStore is only for testing; it doesn't persist the data at all.

If you want to use a DocumentStore, RDB and Mongo persistence are currently your only options.

Are you sure that the SegmentStore is not what you need?

Julian Reschke
  • 40,156
  • 8
  • 95
  • 98