Skip to content

Commit c30f40d

Browse files
committed
added note to early access page about documentation not available
1 parent 16bfc2a commit c30f40d

File tree

2 files changed

+3
-24
lines changed

2 files changed

+3
-24
lines changed

site/content/early_access/index.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This page contains early access information for XAP and InsightEdge 14.0.0, whic
1313
-->
1414

1515
{{%tip "Disclaimer"%}}
16-
Early access builds are provided as is, and should not be used in production. The latest stable release is version **12.3.1**. <br>[Download](http://www.gigaspaces.com/xap-download) | [Documentation](/xap/12.3/)
16+
Early access builds are provided as is, and should not be used in production. The latest stable release is version **12.3.1**. Additionally, the early access documentation has not yet been released. Use the documentation for the lastest stable release.<br>[Download](http://www.gigaspaces.com/xap-download) | [Documentation](/xap/12.3/)
1717
{{%/tip%}}
1818
<hr/>
1919

site/content/xap/12.3/started/xap-tutorial-part1.markdown

+2-23
Original file line numberDiff line numberDiff line change
@@ -697,41 +697,27 @@ There are several additional indexing options available. For example you can ind
697697
**When you code your space classes make sure:**
698698

699699
- there are indexes for all relevant attributes including nested attributes you use for queries
700-
701700
- numeric attribute queried with between / greater / less than should have an ordered index.
702-
703701
- compound indexes should be used for attributes queried using AND query
704-
705702
- space classes have empty no arg constructor
706-
707703
- all nested classes are serializable
708-
709704
- do not use int, long, etc. integer attributes, instead use Long.
710-
711705
- when possible use writeMultiple.
712-
713706
- use projection for read/readMultiple
714-
715707
- use clear for data removal and not take or takeMultiple
716-
717708
- no huge collections with many items
718-
719709
- use change api instead of update, especially if collections are used.
720-
721-
722-
723710

724711
# Other Data Access APIs
725712
XAP provides a JDBC Driver, JPA API, MAP and Memcached APIs.
726713

727714
{{%refer%}}[Other Data Access API's](../dev-java/other-data-access-apis.html){{%/refer%}}
728715

729-
730-
731716
# Spring Integration
732717
All XAP components can be wired and configured with the application using corresponding Spring Beans.
733718

734-
**The GigaSpaces Spring Integration supports:**<br>
719+
**The GigaSpaces Spring Integration supports:**
720+
735721
- Spring Automatic Transaction Demarcation<br>
736722
- Spring Data<br>
737723
- Spring JMS<br>
@@ -742,11 +728,9 @@ All XAP components can be wired and configured with the application using corres
742728
- Spring Security<br>
743729
- Mule
744730

745-
746731
Lets look at a Spring configuration file that represents the creation of an embedded space:
747732

748733

749-
750734
```xml
751735
<?xml version="1.0" encoding="UTF-8"?>
752736
<beans xmlns="http://www.springframework.org/schema/beans"
@@ -773,7 +757,6 @@ Lets look at a Spring configuration file that represents the creation of an embe
773757
</beans>
774758
```
775759

776-
777760
And here is the code to access the Spring bean within your application:
778761

779762
```java
@@ -785,8 +768,4 @@ public void findSpace() {
785768
}
786769
```
787770

788-
789771
{{%note%}}In the following parts of this tutorial we will introduce you the different schemas that support the XAP Spring integration. We will also use the Annotations to configure and inject components.{{%/note%}}
790-
791-
792-

0 commit comments

Comments
 (0)