mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
[kdb+/en] highlight and update links
This commit is contained in:
parent
fbd84cf623
commit
ecd16aedf9
@ -11,24 +11,22 @@ and released by Kx systems in 2003. q is a descendant of APL and as such is
|
||||
very terse and a little strange looking for anyone from a "C heritage" language
|
||||
background. Its expressiveness and vector oriented nature make it well suited
|
||||
to performing complex calculations on large amounts of data (while also
|
||||
encouraging some amount of [code
|
||||
golf](https://en.wikipedia.org/wiki/Code_golf)). The fundamental structure in
|
||||
the language is not the object but instead the list, and tables are built as
|
||||
collections of lists. This means - unlike most traditional RDBMS systems -
|
||||
tables are column oriented. The language has both an in-memory and on-disk
|
||||
database built in, giving a large amount of flexibility. kdb+ is most widely
|
||||
used in the world of finance to store, analyze, process and retrieve large
|
||||
encouraging some amount of [code golf](https://en.wikipedia.org/wiki/Code_golf)).
|
||||
The fundamental structure in the language is not the object but instead the list,
|
||||
and tables are built as collections of lists. This means - unlike most traditional
|
||||
RDBMS systems - tables are column oriented. The language has both an in-memory
|
||||
and on-disk database built in, giving a large amount of flexibility. kdb+ is most
|
||||
widely used in the world of finance to store, analyze, process and retrieve large
|
||||
time-series data sets.
|
||||
|
||||
The terms *q* and *kdb+* are usually used interchangeably, as the two are not
|
||||
separable so this distinction is not really useful.
|
||||
|
||||
All Feedback welcome! You can reach me at matt.doherty@aquaq.co.uk, or Jonny
|
||||
at jonny.press@aquaq.co.uk
|
||||
To learn more about kdb+ you can join the
|
||||
[KX Community forums](https://learninghub.kx.com/forums/) or
|
||||
the [TorQ kdb+](https://groups.google.com/forum/#!forum/kdbtorq) group.
|
||||
|
||||
To learn more about kdb+ you can join the [Personal kdb+](https://groups.google.com/forum/#!forum/personal-kdbplus) or [TorQ kdb+](https://groups.google.com/forum/#!forum/kdbtorq) group.
|
||||
|
||||
```
|
||||
```q
|
||||
/ Single line comments start with a forward-slash
|
||||
/ These can also be used in-line, so long as at least one whitespace character
|
||||
/ separates it from text to the left
|
||||
@ -764,7 +762,7 @@ select from splayed / (the columns are read from disk on request)
|
||||
/ working together. kdb+ frameworks are available to streamline the setup
|
||||
/ and configuration of this architecture and add additional functionality
|
||||
/ such as disaster recovery, logging, access, load balancing etc.
|
||||
/ https://github.com/AquaQAnalytics/TorQ
|
||||
/ https://github.com/DataIntellectTech/TorQ
|
||||
```
|
||||
|
||||
## Want to know more?
|
||||
@ -772,5 +770,4 @@ select from splayed / (the columns are read from disk on request)
|
||||
* [*q for mortals* q language tutorial](http://code.kx.com/q4m3/)
|
||||
* [*Introduction to Kdb+* on disk data tutorial](http://code.kx.com/q4m3/14_Introduction_to_Kdb+/)
|
||||
* [q language reference](https://code.kx.com/q/ref/)
|
||||
* [Online training courses](http://training.aquaq.co.uk/)
|
||||
* [TorQ production framework](https://github.com/AquaQAnalytics/TorQ)
|
||||
* [TorQ production framework](https://github.com/DataIntellectTech/TorQ)
|
||||
|
Loading…
Reference in New Issue
Block a user