Coffeeae

Coffeeae is a tribe of flowering plants in the family Rubiaceae and contains about 303 species in 11 genera. Its representatives are found in tropical and southern Africa, Madagascar, the western Indian Ocean, tropical and subtropical Asia, and Queensland.[1]

Coffeeae
Coffea arabica
Scientific classification
Kingdom: Plantae
Clade: Tracheophytes
Clade: Angiosperms
Clade: Eudicots
Clade: Asterids
Order: Gentianales
Family: Rubiaceae
Subfamily: Ixoroideae
Tribe: Coffeeae
DC.
Type genus
Coffea

Genera

Currently accepted names[1][2][3][4][5][6]

Synonyms

gollark: Pretty much all of the algorithms reduced size by ~50% or so and the difference is maybe 5% or so between them all, so this is definitely premature optimization, but bees?
gollark: I tested four different compression algorithms and brotli did fairly well; I would have used zstandard but the node bindings for it are awful, and brotli actually did do better on small inputs.
gollark: For example, it stores created/updated timestamps in a way which allows them to be looked up more quickly, makes it faster to look up the latest revision of stuff, allows me to do compression (I implemented brotli compression to reduce storage requirements a lot), and allows revisions to have data and represent stuff other than "the page content changed".
gollark: The new version *is* better, even if it involves something like 70 lines more code.
gollark: I've reworked minoteaur's design a bit again because productivity is BEES and happens to other people.```sqlCREATE TABLE pages ( id INTEGER PRIMARY KEY, name TEXT NOT NULL, updated INTEGER NOT NULL, content TEXT NOT NULL);``` I went from that small and thus uncool database thingy to this:```sqlCREATE TABLE versions ( vuuid TEXT PRIMARY KEY COLLATE BINARY, rawSize INTEGER NOT NULL, encoding TEXT, data BLOB NOT NULL);CREATE TABLE pages ( title TEXT PRIMARY KEY, created INTEGER NOT NULL, updated INTEGER NOT NULL, latestVersion TEXT NOT NULL REFERENCES versions(vuuid));CREATE TABLE revisions ( ruuid TEXT PRIMARY KEY COLLATE BINARY, page TEXT NOT NULL REFERENCES pages(title), timestamp INTEGER NOT NULL, type TEXT NOT NULL, data TEXT NOT NULL, -- JSON version TEXT NOT NULL REFERENCES versions(vuuid));CREATE INDEX revisions_page_ix ON revisions(page);```

References

  1. "World Checklist of Rubiaceae". Retrieved October 2015. Check date values in: |accessdate= (help)
  2. Robbrecht E, Manen JF (2006). "The major evolutionary lineages of the coffee family (Rubiaceae, angiosperms). Combined analysis (nDNA and cpDNA) to infer the position of Coptosapelta and Luculia, and supertree construction based on rbcL, rps16, trnL-trnF and atpB-rbcL data. A new classification in two subfamilies, Cinchonoideae and Rubioideae". Systematic Geography of Plants. 76: 85–146.
  3. Davis AP, Chester M, Maurin O, Fay MF (2007). "Searching for the relatives of Coffea (Rubiaceae, Ixoroideae): the circumscription and phylogeny of Coffeeae based on plastid sequence data and morphology". American Journal of Botany. 94: 313–329. doi:10.3732/ajb.94.3.313. PMID 21636404.
  4. Tosh J, Davis AP, Dessein S (2007). "Phylogeny of Tricalysia: Resurrection of the genus Empogona". Annals of the Missouri Botanical Garden. 96: 194–213. doi:10.3417/2006202.
  5. Bremer B (2009). "A review of molecular phylogenetic studies of Rubiaceae". Annals of the Missouri Botanical Garden. 96: 4–26. doi:10.3417/2006197.
  6. Bremer B, Eriksson E (2009). "Time tree of Rubiaceae: phylogeny and dating the family, subfamilies, and tribes". International Journal of Plant Sciences. 170: 766–793. doi:10.1086/599077.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.